staging: wlan-ng: rename DIDmib_dot11mac_dot11OperationTable_dot11MACAddress in p8021...
authorTim Collier <osdevtc@gmail.com>
Wed, 26 Sep 2018 22:06:07 +0000 (23:06 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Sep 2018 12:42:41 +0000 (14:42 +0200)
Rename DIDmib_dot11mac_dot11OperationTable_dot11MACAddress in
p80211metadef.h to DIDMIB_DOT11MAC_OPERATIONTABLE_MACADDRESS to fix
"Avoid CamelCase" message from checkpatch and conform to the coding
style guidelines. Also shorten name by removing repeated use of
"DOT11" to ease readability and reduce long lines.

Signed-off-by: Tim Collier <osdevtc@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/p80211metadef.h
drivers/staging/wlan-ng/p80211netdev.c
drivers/staging/wlan-ng/prism2mib.c

index 79f6813cd9d631daea1cbeb1870f044287da0465..d0597644c0ae18807b29f2617fb71218eb6c196a 100644 (file)
 #define DIDMIB_DOT11MAC_OPERATIONTABLE \
                        (P80211DID_MKSECTION(2) | \
                        P80211DID_MKGROUP(1))
-#define DIDmib_dot11mac_dot11OperationTable_dot11MACAddress \
+#define DIDMIB_DOT11MAC_OPERATIONTABLE_MACADDRESS \
                        (P80211DID_MKSECTION(2) | \
                        P80211DID_MKGROUP(1) | \
                        P80211DID_MKITEM(1) | 0x18000000)
index 3c433a28bf8ef3c0f11e2e89208f9f28813c2f83..a70fb84f38f16ca5018e6f3554cdd58f5eeb9417 100644 (file)
@@ -649,7 +649,7 @@ static int p80211knetdev_set_mac_address(struct net_device *dev, void *addr)
        mibattr->status = P80211ENUM_msgitem_status_data_ok;
        mibattr->len = sizeof(mibattr->data);
 
-       macaddr->did = DIDmib_dot11mac_dot11OperationTable_dot11MACAddress;
+       macaddr->did = DIDMIB_DOT11MAC_OPERATIONTABLE_MACADDRESS;
        macaddr->status = P80211ENUM_msgitem_status_data_ok;
        macaddr->len = sizeof(macaddr->data);
        macaddr->data.len = ETH_ALEN;
index b7c82bc6153612f8e109df3bf0aef3d4fe722b63..0f2d7834b11b6557baa955a8a94389ef30215475 100644 (file)
@@ -179,7 +179,7 @@ static struct mibrec mibtab[] = {
 
        /* dot11mac MIB's */
 
-       {DIDmib_dot11mac_dot11OperationTable_dot11MACAddress,
+       {DIDMIB_DOT11MAC_OPERATIONTABLE_MACADDRESS,
         F_STA | F_READ | F_WRITE,
         HFA384x_RID_CNFOWNMACADDR, HFA384x_RID_CNFOWNMACADDR_LEN, 0,
         prism2mib_bytearea2pstr},