提交 a94e8427 编写于 作者: D David Kilroy 提交者: John W. Linville

orinoco: spaces in parenthesised expressions

Remove checkpatch warnings of the following type:

ERROR: space prohibited after that open parenthesis '('
ERROR: space prohibited before that close parenthesis ')'
ERROR: space prohibited after that '!' (ctx:BxW)
ERROR: space required before the open parenthesis '('
ERROR: space required before the open brace '{'
Signed-off-by: NDavid Kilroy <kilroyd@googlemail.com>
Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
上级 6fe9deb1
...@@ -167,7 +167,7 @@ static const u8 encaps_hdr[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00}; ...@@ -167,7 +167,7 @@ static const u8 encaps_hdr[] = {0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00};
#define ORINOCO_INTEN (HERMES_EV_RX | HERMES_EV_ALLOC \ #define ORINOCO_INTEN (HERMES_EV_RX | HERMES_EV_ALLOC \
| HERMES_EV_TX | HERMES_EV_TXEXC \ | HERMES_EV_TX | HERMES_EV_TXEXC \
| HERMES_EV_WTERR | HERMES_EV_INFO \ | HERMES_EV_WTERR | HERMES_EV_INFO \
| HERMES_EV_INFDROP ) | HERMES_EV_INFDROP)
#define MAX_RID_LEN 1024 #define MAX_RID_LEN 1024
...@@ -768,7 +768,7 @@ static int orinoco_open(struct net_device *dev) ...@@ -768,7 +768,7 @@ static int orinoco_open(struct net_device *dev)
err = __orinoco_up(dev); err = __orinoco_up(dev);
if (! err) if (!err)
priv->open = 1; priv->open = 1;
orinoco_unlock(priv, &flags); orinoco_unlock(priv, &flags);
...@@ -810,7 +810,7 @@ static struct iw_statistics *orinoco_get_wireless_stats(struct net_device *dev) ...@@ -810,7 +810,7 @@ static struct iw_statistics *orinoco_get_wireless_stats(struct net_device *dev)
int err; int err;
unsigned long flags; unsigned long flags;
if (! netif_device_present(dev)) { if (!netif_device_present(dev)) {
printk(KERN_WARNING "%s: get_wireless_stats() called while device not present\n", printk(KERN_WARNING "%s: get_wireless_stats() called while device not present\n",
dev->name); dev->name);
return NULL; /* FIXME: Can we do better than this? */ return NULL; /* FIXME: Can we do better than this? */
...@@ -881,12 +881,12 @@ static int orinoco_change_mtu(struct net_device *dev, int new_mtu) ...@@ -881,12 +881,12 @@ static int orinoco_change_mtu(struct net_device *dev, int new_mtu)
{ {
struct orinoco_private *priv = netdev_priv(dev); struct orinoco_private *priv = netdev_priv(dev);
if ( (new_mtu < ORINOCO_MIN_MTU) || (new_mtu > ORINOCO_MAX_MTU) ) if ((new_mtu < ORINOCO_MIN_MTU) || (new_mtu > ORINOCO_MAX_MTU))
return -EINVAL; return -EINVAL;
/* MTU + encapsulation + header length */ /* MTU + encapsulation + header length */
if ( (new_mtu + ENCAPS_OVERHEAD + sizeof(struct ieee80211_hdr)) > if ((new_mtu + ENCAPS_OVERHEAD + sizeof(struct ieee80211_hdr)) >
(priv->nicbuf_size - ETH_HLEN) ) (priv->nicbuf_size - ETH_HLEN))
return -EINVAL; return -EINVAL;
dev->mtu = new_mtu; dev->mtu = new_mtu;
...@@ -909,7 +909,7 @@ static int orinoco_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -909,7 +909,7 @@ static int orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
int tx_control; int tx_control;
unsigned long flags; unsigned long flags;
if (! netif_running(dev)) { if (!netif_running(dev)) {
printk(KERN_ERR "%s: Tx on stopped device!\n", printk(KERN_ERR "%s: Tx on stopped device!\n",
dev->name); dev->name);
return NETDEV_TX_BUSY; return NETDEV_TX_BUSY;
...@@ -927,7 +927,7 @@ static int orinoco_xmit(struct sk_buff *skb, struct net_device *dev) ...@@ -927,7 +927,7 @@ static int orinoco_xmit(struct sk_buff *skb, struct net_device *dev)
return NETDEV_TX_BUSY; return NETDEV_TX_BUSY;
} }
if (! netif_carrier_ok(dev) || (priv->iw_mode == IW_MODE_MONITOR)) { if (!netif_carrier_ok(dev) || (priv->iw_mode == IW_MODE_MONITOR)) {
/* Oops, the firmware hasn't established a connection, /* Oops, the firmware hasn't established a connection,
silently drop the packet (this seems to be the silently drop the packet (this seems to be the
safest approach). */ safest approach). */
...@@ -1203,7 +1203,7 @@ static inline int is_ethersnap(void *_hdr) ...@@ -1203,7 +1203,7 @@ static inline int is_ethersnap(void *_hdr)
* 00:00:f8 - we need both because different APs appear to use * 00:00:f8 - we need both because different APs appear to use
* different OUIs for some reason */ * different OUIs for some reason */
return (memcmp(hdr, &encaps_hdr, 5) == 0) return (memcmp(hdr, &encaps_hdr, 5) == 0)
&& ( (hdr[5] == 0x00) || (hdr[5] == 0xf8) ); && ((hdr[5] == 0x00) || (hdr[5] == 0xf8));
} }
static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac, static inline void orinoco_spy_gather(struct net_device *dev, u_char *mac,
...@@ -1700,14 +1700,14 @@ static void orinoco_join_ap(struct work_struct *work) ...@@ -1700,14 +1700,14 @@ static void orinoco_join_ap(struct work_struct *work)
/* Allocate buffer for scan results */ /* Allocate buffer for scan results */
buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL); buf = kmalloc(MAX_SCAN_LEN, GFP_KERNEL);
if (! buf) if (!buf)
return; return;
if (orinoco_lock(priv, &flags) != 0) if (orinoco_lock(priv, &flags) != 0)
goto fail_lock; goto fail_lock;
/* Sanity checks in case user changed something in the meantime */ /* Sanity checks in case user changed something in the meantime */
if (! priv->bssid_fixed) if (!priv->bssid_fixed)
goto out; goto out;
if (strlen(priv->desired_essid) == 0) if (strlen(priv->desired_essid) == 0)
...@@ -1735,7 +1735,7 @@ static void orinoco_join_ap(struct work_struct *work) ...@@ -1735,7 +1735,7 @@ static void orinoco_join_ap(struct work_struct *work)
} }
} }
if (! found) { if (!found) {
DEBUG(1, "%s: Requested AP not found in scan results\n", DEBUG(1, "%s: Requested AP not found in scan results\n",
dev->name); dev->name);
goto out; goto out;
...@@ -2174,7 +2174,7 @@ static void __orinoco_ev_info(struct net_device *dev, hermes_t *hw) ...@@ -2174,7 +2174,7 @@ static void __orinoco_ev_info(struct net_device *dev, hermes_t *hw)
{ {
int i; int i;
printk(KERN_DEBUG "Scan result [%02X", buf[0]); printk(KERN_DEBUG "Scan result [%02X", buf[0]);
for(i = 1; i < (len * 2); i++) for (i = 1; i < (len * 2); i++)
printk(":%02X", buf[i]); printk(":%02X", buf[i]);
printk("]\n"); printk("]\n");
} }
...@@ -2311,8 +2311,8 @@ int __orinoco_down(struct net_device *dev) ...@@ -2311,8 +2311,8 @@ int __orinoco_down(struct net_device *dev)
netif_stop_queue(dev); netif_stop_queue(dev);
if (! priv->hw_unavailable) { if (!priv->hw_unavailable) {
if (! priv->broken_disableport) { if (!priv->broken_disableport) {
err = hermes_disable_port(hw, 0); err = hermes_disable_port(hw, 0);
if (err) { if (err) {
/* Some firmwares (e.g. Intersil 1.3.x) seem /* Some firmwares (e.g. Intersil 1.3.x) seem
...@@ -2475,7 +2475,7 @@ static int __orinoco_hw_setup_wepkeys(struct orinoco_private *priv) ...@@ -2475,7 +2475,7 @@ static int __orinoco_hw_setup_wepkeys(struct orinoco_private *priv)
} }
/* Write all 4 keys */ /* Write all 4 keys */
for(i = 0; i < ORINOCO_MAX_KEYS; i++) { for (i = 0; i < ORINOCO_MAX_KEYS; i++) {
err = hermes_write_ltv(hw, USER_BAP, err = hermes_write_ltv(hw, USER_BAP,
HERMES_RID_CNFDEFAULTKEY0 + i, HERMES_RID_CNFDEFAULTKEY0 + i,
HERMES_BYTES_TO_RECLEN(keylen), HERMES_BYTES_TO_RECLEN(keylen),
...@@ -2898,8 +2898,8 @@ __orinoco_set_multicast_list(struct net_device *dev) ...@@ -2898,8 +2898,8 @@ __orinoco_set_multicast_list(struct net_device *dev)
/* The Hermes doesn't seem to have an allmulti mode, so we go /* The Hermes doesn't seem to have an allmulti mode, so we go
* into promiscuous mode and let the upper levels deal. */ * into promiscuous mode and let the upper levels deal. */
if ( (dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) || if ((dev->flags & IFF_PROMISC) || (dev->flags & IFF_ALLMULTI) ||
(dev->mc_count > MAX_MULTICAST(priv)) ) { (dev->mc_count > MAX_MULTICAST(priv))) {
promisc = 1; promisc = 1;
mc_count = 0; mc_count = 0;
} else { } else {
...@@ -2921,14 +2921,14 @@ __orinoco_set_multicast_list(struct net_device *dev) ...@@ -2921,14 +2921,14 @@ __orinoco_set_multicast_list(struct net_device *dev)
/* If we're not in promiscuous mode, then we need to set the /* If we're not in promiscuous mode, then we need to set the
* group address if either we want to multicast, or if we were * group address if either we want to multicast, or if we were
* multicasting and want to stop */ * multicasting and want to stop */
if (! promisc && (mc_count || priv->mc_count) ) { if (!promisc && (mc_count || priv->mc_count)) {
struct dev_mc_list *p = dev->mc_list; struct dev_mc_list *p = dev->mc_list;
struct hermes_multicast mclist; struct hermes_multicast mclist;
int i; int i;
for (i = 0; i < mc_count; i++) { for (i = 0; i < mc_count; i++) {
/* paranoia: is list shorter than mc_count? */ /* paranoia: is list shorter than mc_count? */
BUG_ON(! p); BUG_ON(!p);
/* paranoia: bad address size in list? */ /* paranoia: bad address size in list? */
BUG_ON(p->dmi_addrlen != ETH_ALEN); BUG_ON(p->dmi_addrlen != ETH_ALEN);
...@@ -3008,7 +3008,7 @@ static void orinoco_reset(struct work_struct *work) ...@@ -3008,7 +3008,7 @@ static void orinoco_reset(struct work_struct *work)
/* priv->open or priv->hw_unavailable might have changed while /* priv->open or priv->hw_unavailable might have changed while
* we dropped the lock */ * we dropped the lock */
if (priv->open && (! priv->hw_unavailable)) { if (priv->open && (!priv->hw_unavailable)) {
err = __orinoco_up(dev); err = __orinoco_up(dev);
if (err) { if (err) {
printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n", printk(KERN_ERR "%s: orinoco_reset: Error %d reenabling card\n",
...@@ -3066,7 +3066,7 @@ irqreturn_t orinoco_interrupt(int irq, void *dev_id) ...@@ -3066,7 +3066,7 @@ irqreturn_t orinoco_interrupt(int irq, void *dev_id)
evstat = hermes_read_regn(hw, EVSTAT); evstat = hermes_read_regn(hw, EVSTAT);
events = evstat & hw->inten; events = evstat & hw->inten;
if (! events) { if (!events) {
orinoco_unlock(priv, &flags); orinoco_unlock(priv, &flags);
return IRQ_NONE; return IRQ_NONE;
} }
...@@ -3086,7 +3086,7 @@ irqreturn_t orinoco_interrupt(int irq, void *dev_id) ...@@ -3086,7 +3086,7 @@ irqreturn_t orinoco_interrupt(int irq, void *dev_id)
} }
/* Check the card hasn't been removed */ /* Check the card hasn't been removed */
if (! hermes_present(hw)) { if (!hermes_present(hw)) {
DEBUG(0, "orinoco_interrupt(): card removed\n"); DEBUG(0, "orinoco_interrupt(): card removed\n");
break; break;
} }
...@@ -3558,7 +3558,7 @@ static int orinoco_init(struct net_device *dev) ...@@ -3558,7 +3558,7 @@ static int orinoco_init(struct net_device *dev)
/* Set up the default configuration */ /* Set up the default configuration */
priv->iw_mode = IW_MODE_INFRA; priv->iw_mode = IW_MODE_INFRA;
/* By default use IEEE/IBSS ad-hoc mode if we have it */ /* By default use IEEE/IBSS ad-hoc mode if we have it */
priv->prefer_port3 = priv->has_port3 && (! priv->has_ibss); priv->prefer_port3 = priv->has_port3 && (!priv->has_ibss);
set_port_type(priv); set_port_type(priv);
priv->channel = 0; /* use firmware default */ priv->channel = 0; /* use firmware default */
...@@ -3769,7 +3769,7 @@ static int orinoco_hw_get_freq(struct orinoco_private *priv) ...@@ -3769,7 +3769,7 @@ static int orinoco_hw_get_freq(struct orinoco_private *priv)
goto out; goto out;
} }
if ( (channel < 1) || (channel > NUM_CHANNELS) ) { if ((channel < 1) || (channel > NUM_CHANNELS)) {
printk(KERN_WARNING "%s: Channel out of range (%d)!\n", printk(KERN_WARNING "%s: Channel out of range (%d)!\n",
priv->ndev->name, channel); priv->ndev->name, channel);
err = -EBUSY; err = -EBUSY;
...@@ -4029,7 +4029,7 @@ static int orinoco_ioctl_getiwrange(struct net_device *dev, ...@@ -4029,7 +4029,7 @@ static int orinoco_ioctl_getiwrange(struct net_device *dev,
if (priv->has_wpa) if (priv->has_wpa)
range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_CIPHER_TKIP; range->enc_capa = IW_ENC_CAPA_WPA | IW_ENC_CAPA_CIPHER_TKIP;
if ((priv->iw_mode == IW_MODE_ADHOC) && (!SPY_NUMBER(priv))){ if ((priv->iw_mode == IW_MODE_ADHOC) && (!SPY_NUMBER(priv))) {
/* Quality stats meaningless in ad-hoc mode */ /* Quality stats meaningless in ad-hoc mode */
} else { } else {
range->max_qual.qual = 0x8b - 0x2f; range->max_qual.qual = 0x8b - 0x2f;
...@@ -4106,7 +4106,7 @@ static int orinoco_ioctl_setiwencode(struct net_device *dev, ...@@ -4106,7 +4106,7 @@ static int orinoco_ioctl_setiwencode(struct net_device *dev,
int err = -EINPROGRESS; /* Call commit handler */ int err = -EINPROGRESS; /* Call commit handler */
unsigned long flags; unsigned long flags;
if (! priv->has_wep) if (!priv->has_wep)
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (erq->pointer) { if (erq->pointer) {
...@@ -4114,7 +4114,7 @@ static int orinoco_ioctl_setiwencode(struct net_device *dev, ...@@ -4114,7 +4114,7 @@ static int orinoco_ioctl_setiwencode(struct net_device *dev,
if (erq->length > LARGE_KEY_SIZE) if (erq->length > LARGE_KEY_SIZE)
return -E2BIG; return -E2BIG;
if ( (erq->length > SMALL_KEY_SIZE) && !priv->has_big_wep ) if ((erq->length > SMALL_KEY_SIZE) && !priv->has_big_wep)
return -E2BIG; return -E2BIG;
} }
...@@ -4147,13 +4147,13 @@ static int orinoco_ioctl_setiwencode(struct net_device *dev, ...@@ -4147,13 +4147,13 @@ static int orinoco_ioctl_setiwencode(struct net_device *dev,
* we will arrive there with an index of -1. This is valid * we will arrive there with an index of -1. This is valid
* but need to be taken care off... Jean II */ * but need to be taken care off... Jean II */
if ((index < 0) || (index >= ORINOCO_MAX_KEYS)) { if ((index < 0) || (index >= ORINOCO_MAX_KEYS)) {
if((index != -1) || (erq->flags == 0)) { if ((index != -1) || (erq->flags == 0)) {
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
} else { } else {
/* Set the index : Check that the key is valid */ /* Set the index : Check that the key is valid */
if(priv->keys[index].len == 0) { if (priv->keys[index].len == 0) {
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
...@@ -4204,7 +4204,7 @@ static int orinoco_ioctl_getiwencode(struct net_device *dev, ...@@ -4204,7 +4204,7 @@ static int orinoco_ioctl_getiwencode(struct net_device *dev,
u16 xlen = 0; u16 xlen = 0;
unsigned long flags; unsigned long flags;
if (! priv->has_wep) if (!priv->has_wep)
return -EOPNOTSUPP; return -EOPNOTSUPP;
if (orinoco_lock(priv, &flags) != 0) if (orinoco_lock(priv, &flags) != 0)
...@@ -4348,7 +4348,7 @@ static int orinoco_ioctl_setfreq(struct net_device *dev, ...@@ -4348,7 +4348,7 @@ static int orinoco_ioctl_setfreq(struct net_device *dev,
if (priv->iw_mode == IW_MODE_INFRA) if (priv->iw_mode == IW_MODE_INFRA)
return -EBUSY; return -EBUSY;
if ( (frq->e == 0) && (frq->m <= 1000) ) { if ((frq->e == 0) && (frq->m <= 1000)) {
/* Setting by channel number */ /* Setting by channel number */
chan = frq->m; chan = frq->m;
} else { } else {
...@@ -4363,8 +4363,8 @@ static int orinoco_ioctl_setfreq(struct net_device *dev, ...@@ -4363,8 +4363,8 @@ static int orinoco_ioctl_setfreq(struct net_device *dev,
chan = ieee80211_freq_to_dsss_chan(frq->m / denom); chan = ieee80211_freq_to_dsss_chan(frq->m / denom);
} }
if ( (chan < 1) || (chan > NUM_CHANNELS) || if ((chan < 1) || (chan > NUM_CHANNELS) ||
! (priv->channel_mask & (1 << (chan-1)) ) ) !(priv->channel_mask & (1 << (chan-1))))
return -EINVAL; return -EINVAL;
if (orinoco_lock(priv, &flags) != 0) if (orinoco_lock(priv, &flags) != 0)
...@@ -4467,7 +4467,7 @@ static int orinoco_ioctl_setrts(struct net_device *dev, ...@@ -4467,7 +4467,7 @@ static int orinoco_ioctl_setrts(struct net_device *dev,
if (rrq->disabled) if (rrq->disabled)
val = 2347; val = 2347;
if ( (val < 0) || (val > 2347) ) if ((val < 0) || (val > 2347))
return -EINVAL; return -EINVAL;
if (orinoco_lock(priv, &flags) != 0) if (orinoco_lock(priv, &flags) != 0)
...@@ -4519,7 +4519,7 @@ static int orinoco_ioctl_setfrag(struct net_device *dev, ...@@ -4519,7 +4519,7 @@ static int orinoco_ioctl_setfrag(struct net_device *dev,
if (frq->disabled) if (frq->disabled)
priv->frag_thresh = 2346; priv->frag_thresh = 2346;
else { else {
if ( (frq->value < 256) || (frq->value > 2346) ) if ((frq->value < 256) || (frq->value > 2346))
err = -EINVAL; err = -EINVAL;
else else
priv->frag_thresh = frq->value & ~0x1; /* must be even */ priv->frag_thresh = frq->value & ~0x1; /* must be even */
...@@ -4553,7 +4553,7 @@ static int orinoco_ioctl_getfrag(struct net_device *dev, ...@@ -4553,7 +4553,7 @@ static int orinoco_ioctl_getfrag(struct net_device *dev,
val = 0; val = 0;
frq->value = val ? 2347 : 0; frq->value = val ? 2347 : 0;
frq->disabled = ! val; frq->disabled = !val;
frq->fixed = 0; frq->fixed = 0;
} else { } else {
err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD, err = hermes_read_wordrec(hw, USER_BAP, HERMES_RID_CNFFRAGMENTATIONTHRESHOLD,
...@@ -4593,13 +4593,13 @@ static int orinoco_ioctl_setrate(struct net_device *dev, ...@@ -4593,13 +4593,13 @@ static int orinoco_ioctl_setrate(struct net_device *dev,
bitrate = rrq->value / 100000; bitrate = rrq->value / 100000;
} }
if ( (bitrate != 10) && (bitrate != 20) && if ((bitrate != 10) && (bitrate != 20) &&
(bitrate != 55) && (bitrate != 110) ) (bitrate != 55) && (bitrate != 110))
return -EINVAL; return -EINVAL;
for (i = 0; i < BITRATE_TABLE_SIZE; i++) for (i = 0; i < BITRATE_TABLE_SIZE; i++)
if ( (bitrate_table[i].bitrate == bitrate) && if ((bitrate_table[i].bitrate == bitrate) &&
(bitrate_table[i].automatic == ! rrq->fixed) ) { (bitrate_table[i].automatic == !rrq->fixed)) {
ratemode = i; ratemode = i;
break; break;
} }
...@@ -4636,7 +4636,7 @@ static int orinoco_ioctl_getrate(struct net_device *dev, ...@@ -4636,7 +4636,7 @@ static int orinoco_ioctl_getrate(struct net_device *dev,
BUG_ON((ratemode < 0) || (ratemode >= BITRATE_TABLE_SIZE)); BUG_ON((ratemode < 0) || (ratemode >= BITRATE_TABLE_SIZE));
rrq->value = bitrate_table[ratemode].bitrate * 100000; rrq->value = bitrate_table[ratemode].bitrate * 100000;
rrq->fixed = ! bitrate_table[ratemode].automatic; rrq->fixed = !bitrate_table[ratemode].automatic;
rrq->disabled = 0; rrq->disabled = 0;
/* If the interface is running we try to find more about the /* If the interface is running we try to find more about the
...@@ -4725,7 +4725,7 @@ static int orinoco_ioctl_setpower(struct net_device *dev, ...@@ -4725,7 +4725,7 @@ static int orinoco_ioctl_setpower(struct net_device *dev,
} }
/* It's valid to not have a value if we are just toggling /* It's valid to not have a value if we are just toggling
* the flags... Jean II */ * the flags... Jean II */
if(!priv->pm_on) { if (!priv->pm_on) {
err = -EINVAL; err = -EINVAL;
goto out; goto out;
} }
...@@ -5221,7 +5221,7 @@ static int orinoco_ioctl_getretry(struct net_device *dev, ...@@ -5221,7 +5221,7 @@ static int orinoco_ioctl_getretry(struct net_device *dev,
} else { } else {
rrq->flags = IW_RETRY_LIMIT; rrq->flags = IW_RETRY_LIMIT;
rrq->value = short_limit; rrq->value = short_limit;
if(short_limit != long_limit) if (short_limit != long_limit)
rrq->flags |= IW_RETRY_SHORT; rrq->flags |= IW_RETRY_SHORT;
} }
} }
...@@ -5239,7 +5239,7 @@ static int orinoco_ioctl_reset(struct net_device *dev, ...@@ -5239,7 +5239,7 @@ static int orinoco_ioctl_reset(struct net_device *dev,
{ {
struct orinoco_private *priv = netdev_priv(dev); struct orinoco_private *priv = netdev_priv(dev);
if (! capable(CAP_NET_ADMIN)) if (!capable(CAP_NET_ADMIN))
return -EPERM; return -EPERM;
if (info->cmd == (SIOCIWFIRSTPRIV + 0x1)) { if (info->cmd == (SIOCIWFIRSTPRIV + 0x1)) {
...@@ -5263,7 +5263,7 @@ static int orinoco_ioctl_setibssport(struct net_device *dev, ...@@ -5263,7 +5263,7 @@ static int orinoco_ioctl_setibssport(struct net_device *dev,
{ {
struct orinoco_private *priv = netdev_priv(dev); struct orinoco_private *priv = netdev_priv(dev);
int val = *( (int *) extra ); int val = *((int *) extra);
unsigned long flags; unsigned long flags;
if (orinoco_lock(priv, &flags) != 0) if (orinoco_lock(priv, &flags) != 0)
...@@ -5296,7 +5296,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev, ...@@ -5296,7 +5296,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev,
char *extra) char *extra)
{ {
struct orinoco_private *priv = netdev_priv(dev); struct orinoco_private *priv = netdev_priv(dev);
int val = *( (int *) extra ); int val = *((int *) extra);
int err = 0; int err = 0;
unsigned long flags; unsigned long flags;
...@@ -5305,7 +5305,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev, ...@@ -5305,7 +5305,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev,
switch (val) { switch (val) {
case 0: /* Try to do IEEE ad-hoc mode */ case 0: /* Try to do IEEE ad-hoc mode */
if (! priv->has_ibss) { if (!priv->has_ibss) {
err = -EINVAL; err = -EINVAL;
break; break;
} }
...@@ -5314,7 +5314,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev, ...@@ -5314,7 +5314,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev,
break; break;
case 1: /* Try to do Lucent proprietary ad-hoc mode */ case 1: /* Try to do Lucent proprietary ad-hoc mode */
if (! priv->has_port3) { if (!priv->has_port3) {
err = -EINVAL; err = -EINVAL;
break; break;
} }
...@@ -5325,7 +5325,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev, ...@@ -5325,7 +5325,7 @@ static int orinoco_ioctl_setport3(struct net_device *dev,
err = -EINVAL; err = -EINVAL;
} }
if (! err) { if (!err) {
/* Actually update the mode we are using */ /* Actually update the mode we are using */
set_port_type(priv); set_port_type(priv);
err = -EINPROGRESS; err = -EINPROGRESS;
...@@ -5357,7 +5357,7 @@ static int orinoco_ioctl_setpreamble(struct net_device *dev, ...@@ -5357,7 +5357,7 @@ static int orinoco_ioctl_setpreamble(struct net_device *dev,
unsigned long flags; unsigned long flags;
int val; int val;
if (! priv->has_preamble) if (!priv->has_preamble)
return -EOPNOTSUPP; return -EOPNOTSUPP;
/* 802.11b has recently defined some short preamble. /* 802.11b has recently defined some short preamble.
...@@ -5365,7 +5365,7 @@ static int orinoco_ioctl_setpreamble(struct net_device *dev, ...@@ -5365,7 +5365,7 @@ static int orinoco_ioctl_setpreamble(struct net_device *dev,
* This increase performance, especially at high rates * This increase performance, especially at high rates
* (the preamble is transmitted at 1Mb/s), unfortunately * (the preamble is transmitted at 1Mb/s), unfortunately
* this give compatibility troubles... - Jean II */ * this give compatibility troubles... - Jean II */
val = *( (int *) extra ); val = *((int *) extra);
if (orinoco_lock(priv, &flags) != 0) if (orinoco_lock(priv, &flags) != 0)
return -EBUSY; return -EBUSY;
...@@ -5388,7 +5388,7 @@ static int orinoco_ioctl_getpreamble(struct net_device *dev, ...@@ -5388,7 +5388,7 @@ static int orinoco_ioctl_getpreamble(struct net_device *dev,
struct orinoco_private *priv = netdev_priv(dev); struct orinoco_private *priv = netdev_priv(dev);
int *val = (int *) extra; int *val = (int *) extra;
if (! priv->has_preamble) if (!priv->has_preamble)
return -EOPNOTSUPP; return -EOPNOTSUPP;
*val = priv->preamble; *val = priv->preamble;
...@@ -5414,7 +5414,7 @@ static int orinoco_ioctl_getrid(struct net_device *dev, ...@@ -5414,7 +5414,7 @@ static int orinoco_ioctl_getrid(struct net_device *dev,
/* It's a "get" function, but we don't want users to access the /* It's a "get" function, but we don't want users to access the
* WEP key and other raw firmware data */ * WEP key and other raw firmware data */
if (! capable(CAP_NET_ADMIN)) if (!capable(CAP_NET_ADMIN))
return -EPERM; return -EPERM;
if (rid < 0xfc00 || rid > 0xffff) if (rid < 0xfc00 || rid > 0xffff)
...@@ -5548,7 +5548,7 @@ static int orinoco_ioctl_setscan(struct net_device *dev, ...@@ -5548,7 +5548,7 @@ static int orinoco_ioctl_setscan(struct net_device *dev,
err = hermes_inquire(hw, HERMES_INQ_SCAN); err = hermes_inquire(hw, HERMES_INQ_SCAN);
/* One more client */ /* One more client */
if (! err) if (!err)
priv->scan_inprogress = 1; priv->scan_inprogress = 1;
out: out:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册