staging: wilc1000: Remove camel case in variable names.
authorAnchal Jain <anchalj109@gmail.com>
Tue, 22 Mar 2016 12:31:42 +0000 (18:01 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Mar 2016 14:30:36 +0000 (07:30 -0700)
Remove a problem detect by checkpatch.pl
CHECK: Avoid CamelCase: <srcAdd>

Signed-off-by: Anchal Jain <anchalj109@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/linux_mon.c

index 6503316..242f82f 100644 (file)
@@ -24,7 +24,7 @@ struct wilc_wfi_radiotap_cb_hdr {
 
 static struct net_device *wilc_wfi_mon; /* global monitor netdev */
 
-static u8 srcAdd[6];
+static u8 srcadd[6];
 static u8 bssid[6];
 static u8 broadcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
 /**
@@ -228,11 +228,11 @@ static netdev_tx_t WILC_WFI_mon_xmit(struct sk_buff *skb,
        skb->dev = mon_priv->real_ndev;
 
        /* Identify if Ethernet or MAC header (data or mgmt) */
-       memcpy(srcAdd, &skb->data[10], 6);
+       memcpy(srcadd, &skb->data[10], 6);
        memcpy(bssid, &skb->data[16], 6);
        /* if source address and bssid fields are equal>>Mac header */
        /*send it to mgmt frames handler */
-       if (!(memcmp(srcAdd, bssid, 6))) {
+       if (!(memcmp(srcadd, bssid, 6))) {
                ret = mon_mgmt_tx(mon_priv->real_ndev, skb->data, skb->len);
                if (ret)
                        netdev_err(dev, "fail to mgmt tx\n");