staging: wlan-ng: rename DIDmib_dot11mac_dot11OperationTable_dot11MACAddress in p80211metadef.h
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>
This commit is contained in:
parent
4643ffa463
commit
3b1a14e450
|
@ -177,7 +177,7 @@
|
|||
#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)
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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},
|
||||
|
|
Loading…
Reference in New Issue