OSDN Git Service

staging: wlan-ng: rename DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel in...
authorTim Collier <osdevtc@gmail.com>
Wed, 26 Sep 2018 22:06:17 +0000 (23:06 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Sep 2018 12:42:42 +0000 (14:42 +0200)
Rename DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel in
p80211metadef.h to DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL to fix
"Avoid CamelCase" message from checkpatch and conform to the coding
style guidelines. Also shorten name by removing repeated use of
"DOT11" and "DOT11PHY" 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/cfg80211.c
drivers/staging/wlan-ng/p80211metadef.h
drivers/staging/wlan-ng/prism2mib.c

index 9af2aaf..9602ef0 100644 (file)
@@ -455,7 +455,7 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
        if (channel) {
                chan = ieee80211_frequency_to_channel(channel->center_freq);
                result = prism2_domibset_uint32(wlandev,
-                                               DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel,
+                                               DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL,
                                                chan);
                if (result)
                        goto exit;
index dae7335..d8dcc94 100644 (file)
 #define DIDMIB_DOT11PHY_DSSSTABLE \
                        (P80211DID_MKSECTION(3) | \
                        P80211DID_MKGROUP(5))
-#define DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel \
+#define DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL \
                        (P80211DID_MKSECTION(3) | \
                        P80211DID_MKGROUP(5) | \
                        P80211DID_MKITEM(1) | 0x10000000)
index 33331e0..a8da03c 100644 (file)
@@ -206,7 +206,7 @@ static struct mibrec mibtab[] = {
 
        /* dot11phy MIB's */
 
-       {DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel,
+       {DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL,
         F_STA | F_READ,
         HFA384x_RID_CURRENTCHANNEL, 0, 0,
         prism2mib_uint32},