From: Leo Kim <leo....@atmel.com>

This patch removes the warnings reported by checkpatch.pl
for line over 80 characters.

Signed-off-by: Leo Kim <leo....@atmel.com>
Signed-off-by: Glen Lee <glen....@atmel.com>
---
 drivers/staging/wilc1000/linux_wlan.c | 40 +++++++++++++++++++++++------------
 1 file changed, 27 insertions(+), 13 deletions(-)

diff --git a/drivers/staging/wilc1000/linux_wlan.c 
b/drivers/staging/wilc1000/linux_wlan.c
index ab4ab1f..f8cfdaf 100644
--- a/drivers/staging/wilc1000/linux_wlan.c
+++ b/drivers/staging/wilc1000/linux_wlan.c
@@ -123,7 +123,8 @@ static int dev_state_ev_handler(struct notifier_block 
*this, unsigned long event
                return NOTIFY_DONE;
        }
 
-       if ((memcmp(dev_iface->ifa_label, "wlan0", 5)) && 
(memcmp(dev_iface->ifa_label, "p2p0", 4))) {
+       if (memcmp(dev_iface->ifa_label, "wlan0", 5) &&
+           memcmp(dev_iface->ifa_label, "p2p0", 4)) {
                PRINT_D(GENERIC_DBG, "Interface is neither WLAN0 nor P2P0\n");
                return NOTIFY_DONE;
        }
@@ -306,7 +307,8 @@ int linux_wlan_lock_timeout(void *vp, u32 timeout)
 
        PRINT_D(LOCK_DBG, "Locking %p\n", vp);
        if (vp)
-               error = down_timeout((struct semaphore *)vp, 
msecs_to_jiffies(timeout));
+               error = down_timeout((struct semaphore *)vp,
+                                    msecs_to_jiffies(timeout));
        else
                PRINT_ER("Failed, mutex is NULL\n");
        return error;
@@ -317,7 +319,8 @@ void linux_wlan_mac_indicate(struct wilc *wilc, int flag)
        int status;
 
        if (flag == WILC_MAC_INDICATE_STATUS) {
-               wilc_wlan_cfg_get_val(WID_STATUS, (unsigned char *)&status, 4);
+               wilc_wlan_cfg_get_val(WID_STATUS,
+                                     (unsigned char *)&status, 4);
                if (wilc->mac_status == WILC_MAC_STATUS_INIT) {
                        wilc->mac_status = status;
                        up(&wilc->sync_event);
@@ -594,7 +597,9 @@ static int linux_wlan_init_test_config(struct net_device 
*dev, struct wilc *p_ni
        hif_drv = (struct host_if_drv *)priv->hWILCWFIDrv;
        PRINT_D(INIT_DBG, "Host = %p\n", hif_drv);
 
-       PRINT_D(INIT_DBG, "MAC address is : %02x-%02x-%02x-%02x-%02x-%02x\n", 
mac_add[0], mac_add[1], mac_add[2], mac_add[3], mac_add[4], mac_add[5]);
+       PRINT_D(INIT_DBG, "MAC address is : %02x-%02x-%02x-%02x-%02x-%02x\n",
+               mac_add[0], mac_add[1], mac_add[2],
+               mac_add[3], mac_add[4], mac_add[5]);
        wilc_get_chipid(0);
 
        *(int *)c_val = 1;
@@ -1138,10 +1143,14 @@ int mac_open(struct net_device *ndev)
                goto _err_;
        }
 
-       wilc_mgmt_frame_register(nic->wilc_netdev->ieee80211_ptr->wiphy, 
nic->wilc_netdev->ieee80211_ptr,
-                                nic->g_struct_frame_reg[0].frame_type, 
nic->g_struct_frame_reg[0].reg);
-       wilc_mgmt_frame_register(nic->wilc_netdev->ieee80211_ptr->wiphy, 
nic->wilc_netdev->ieee80211_ptr,
-                                nic->g_struct_frame_reg[1].frame_type, 
nic->g_struct_frame_reg[1].reg);
+       wilc_mgmt_frame_register(nic->wilc_netdev->ieee80211_ptr->wiphy,
+                                nic->wilc_netdev->ieee80211_ptr,
+                                nic->g_struct_frame_reg[0].frame_type,
+                                nic->g_struct_frame_reg[0].reg);
+       wilc_mgmt_frame_register(nic->wilc_netdev->ieee80211_ptr->wiphy,
+                                nic->wilc_netdev->ieee80211_ptr,
+                                nic->g_struct_frame_reg[1].frame_type,
+                                nic->g_struct_frame_reg[1].reg);
        netif_wake_queue(ndev);
        wl->open_ifcs++;
        nic->mac_opened = 1;
@@ -1173,14 +1182,16 @@ static void wilc_set_multicast_list(struct net_device 
*dev)
        if (!dev)
                return;
 
-       PRINT_D(INIT_DBG, "Setting Multicast List with count = %d.\n", 
dev->mc.count);
+       PRINT_D(INIT_DBG, "Setting Multicast List with count = %d.\n",
+               dev->mc.count);
 
        if (dev->flags & IFF_PROMISC) {
                PRINT_D(INIT_DBG, "Set promiscuous mode ON, retrive all 
packets\n");
                return;
        }
 
-       if ((dev->flags & IFF_ALLMULTI) || (dev->mc.count) > 
WILC_MULTICAST_TABLE_SIZE) {
+       if ((dev->flags & IFF_ALLMULTI) ||
+           (dev->mc.count) > WILC_MULTICAST_TABLE_SIZE) {
                PRINT_D(INIT_DBG, "Disable multicast filter, retrive all 
multicast packets\n");
                host_int_setup_multicast_filter(hif_drv, false, 0);
                return;
@@ -1261,7 +1272,8 @@ int mac_xmit(struct sk_buff *skb, struct net_device *ndev)
        ih = (struct iphdr *)(skb->data + sizeof(struct ethhdr));
 
        pu8UdpBuffer = (char *)ih + sizeof(struct iphdr);
-       if ((pu8UdpBuffer[1] == 68 && pu8UdpBuffer[3] == 67) || 
(pu8UdpBuffer[1] == 67 && pu8UdpBuffer[3] == 68))
+       if ((pu8UdpBuffer[1] == 68 && pu8UdpBuffer[3] == 67) ||
+           (pu8UdpBuffer[1] == 67 && pu8UdpBuffer[3] == 68))
                PRINT_D(GENERIC_DBG, "DHCP Message transmitted, type:%x %x 
%x\n", pu8UdpBuffer[248], pu8UdpBuffer[249], pu8UdpBuffer[250]);
 
        PRINT_D(TX_DBG, "Sending packet - Size = %d - Address = %p - SKB = 
%p\n", tx_data->size, tx_data->buff, tx_data->skb);
@@ -1368,7 +1380,8 @@ int mac_ioctl(struct net_device *ndev, struct ifreq *req, 
int cmd)
                size = wrq->u.data.length;
 
                if (size && wrq->u.data.pointer) {
-                       buff = memdup_user(wrq->u.data.pointer, 
wrq->u.data.length);
+                       buff = memdup_user(wrq->u.data.pointer,
+                                          wrq->u.data.length);
                        if (IS_ERR(buff))
                                return PTR_ERR(buff);
 
@@ -1574,7 +1587,8 @@ int wilc_netdev_init(struct wilc **wilc)
                }
 
                if (register_netdev(ndev)) {
-                       PRINT_ER("Device couldn't be registered - %s\n", 
ndev->name);
+                       PRINT_ER("Device couldn't be registered - %s\n",
+                                ndev->name);
                        return -1;
                }
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to