This patch fixes the "Lines should not end with a '('"
problem reported by checkpatch

Signed-off-by: Aditya Shankar <aditya.shan...@microchip.com>
---
 drivers/staging/wilc1000/linux_mon.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/staging/wilc1000/linux_mon.c 
b/drivers/staging/wilc1000/linux_mon.c
index 1c740af..a793c42 100644
--- a/drivers/staging/wilc1000/linux_mon.c
+++ b/drivers/staging/wilc1000/linux_mon.c
@@ -84,9 +84,9 @@ void WILC_WFI_monitor_rx(u8 *buff, u32 size)
                cb_hdr->hdr.it_len =
                        cpu_to_le16(sizeof(struct wilc_wfi_radiotap_cb_hdr));
 
-               cb_hdr->hdr.it_present = cpu_to_le32(
-                               (1 << IEEE80211_RADIOTAP_RATE) |
-                               (1 << IEEE80211_RADIOTAP_TX_FLAGS));
+               cb_hdr->hdr.it_present =
+                       cpu_to_le32((1 << IEEE80211_RADIOTAP_RATE) |
+                                   (1 << IEEE80211_RADIOTAP_TX_FLAGS));
 
                cb_hdr->rate = 5; /* txrate->bitrate / 5; */
 
@@ -216,9 +216,9 @@ static netdev_tx_t WILC_WFI_mon_xmit(struct sk_buff *skb,
                cb_hdr->hdr.it_len =
                        cpu_to_le16(sizeof(struct wilc_wfi_radiotap_cb_hdr));
 
-               cb_hdr->hdr.it_present = cpu_to_le32(
-                               (1 << IEEE80211_RADIOTAP_RATE) |
-                               (1 << IEEE80211_RADIOTAP_TX_FLAGS));
+               cb_hdr->hdr.it_present =
+                       cpu_to_le32((1 << IEEE80211_RADIOTAP_RATE) |
+                                   (1 << IEEE80211_RADIOTAP_TX_FLAGS));
 
                cb_hdr->rate = 5; /* txrate->bitrate / 5; */
                cb_hdr->tx_flags = 0x0004;
-- 
2.7.4


_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to