Staging: wlan-ng: fixed coding style issues in p80211netdev.c
authorJohan Meiring <johanmeiring@gmail.com>
Sat, 6 Nov 2010 16:21:59 +0000 (18:21 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 10 Nov 2010 00:37:18 +0000 (16:37 -0800)
This is a patch to the p80211netdev.c file that fixes warnings that were
found by the checkpatch.pl tool

Signed-off-by: Johan Meiring <johanmeiring@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/wlan-ng/p80211netdev.c

index aa1792c8429ea4c049868f40f9374d9e326a3743..48f223e05ddddc3f8e5ecca9c96f57575eb332cd 100644 (file)
@@ -301,7 +301,8 @@ static void p80211netdev_rx_bh(unsigned long arg)
                                        if (memcmp
                                            (hdr->a1, wlandev->netdev->dev_addr,
                                             ETH_ALEN) != 0) {
-                                               /* but reject anything else that isn't multicast */
+                                               /* but reject anything else that
+                                                  isn't multicast */
                                                if (!(hdr->a1[0] & 0x01)) {
                                                        dev_kfree_skb(skb);
                                                        continue;
@@ -770,7 +771,8 @@ int wlan_setup(wlandevice_t *wlandev, struct device *physdev)
        }
 
        /* Allocate and initialize the struct device */
-       netdev = alloc_netdev(sizeof(struct wireless_dev), "wlan%d", ether_setup);
+       netdev = alloc_netdev(sizeof(struct wireless_dev), "wlan%d",
+                               ether_setup);
        if (netdev == NULL) {
                printk(KERN_ERR "Failed to alloc netdev.\n");
                wlan_free_wiphy(wiphy);
This page took 0.027559 seconds and 5 git commands to generate.