diff options
author | Ujjal Roy <royujjal@gmail.com> | 2016-02-25 00:49:56 +0530 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2016-03-07 14:31:24 +0200 |
commit | 354a1947a02528b19ee326e230cb44399cd31865 (patch) | |
tree | 15b4f8eeec96a72cd8246e9090692c27f324da25 /drivers/net/wireless/marvell | |
parent | 3a968d766a63267b3d6b7a66b9d7023b7d93eaae (diff) | |
download | talos-op-linux-354a1947a02528b19ee326e230cb44399cd31865.tar.gz talos-op-linux-354a1947a02528b19ee326e230cb44399cd31865.zip |
mwifiex: Added missing spaces around brackets
This patch fixes the missing spaces issue in coding style.
Signed-off-by: Ujjal Roy <royujjal@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/marvell')
-rw-r--r-- | drivers/net/wireless/marvell/mwifiex/usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/usb.c b/drivers/net/wireless/marvell/mwifiex/usb.c index e43aff932360..05108618430d 100644 --- a/drivers/net/wireless/marvell/mwifiex/usb.c +++ b/drivers/net/wireless/marvell/mwifiex/usb.c @@ -244,9 +244,9 @@ setup_for_next: if (card->rx_cmd_ep == context->ep) { mwifiex_usb_submit_rx_urb(context, size); } else { - if (atomic_read(&adapter->rx_pending) <= HIGH_RX_PENDING){ + if (atomic_read(&adapter->rx_pending) <= HIGH_RX_PENDING) { mwifiex_usb_submit_rx_urb(context, size); - }else{ + } else { context->skb = NULL; } } |