Commit 93d5a1dc authored by Tim Collier's avatar Tim Collier Committed by Greg Kroah-Hartman

staging: wlan-ng: rename DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel in p80211metadef.h

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: default avatarTim Collier <osdevtc@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 80908dcb
...@@ -455,7 +455,7 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev, ...@@ -455,7 +455,7 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
if (channel) { if (channel) {
chan = ieee80211_frequency_to_channel(channel->center_freq); chan = ieee80211_frequency_to_channel(channel->center_freq);
result = prism2_domibset_uint32(wlandev, result = prism2_domibset_uint32(wlandev,
DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel, DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL,
chan); chan);
if (result) if (result)
goto exit; goto exit;
......
...@@ -213,7 +213,7 @@ ...@@ -213,7 +213,7 @@
#define DIDMIB_DOT11PHY_DSSSTABLE \ #define DIDMIB_DOT11PHY_DSSSTABLE \
(P80211DID_MKSECTION(3) | \ (P80211DID_MKSECTION(3) | \
P80211DID_MKGROUP(5)) P80211DID_MKGROUP(5))
#define DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel \ #define DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL \
(P80211DID_MKSECTION(3) | \ (P80211DID_MKSECTION(3) | \
P80211DID_MKGROUP(5) | \ P80211DID_MKGROUP(5) | \
P80211DID_MKITEM(1) | 0x10000000) P80211DID_MKITEM(1) | 0x10000000)
......
...@@ -206,7 +206,7 @@ static struct mibrec mibtab[] = { ...@@ -206,7 +206,7 @@ static struct mibrec mibtab[] = {
/* dot11phy MIB's */ /* dot11phy MIB's */
{DIDmib_dot11phy_dot11PhyDSSSTable_dot11CurrentChannel, {DIDMIB_DOT11PHY_DSSSTABLE_CURRENTCHANNEL,
F_STA | F_READ, F_STA | F_READ,
HFA384x_RID_CURRENTCHANNEL, 0, 0, HFA384x_RID_CURRENTCHANNEL, 0, 0,
prism2mib_uint32}, prism2mib_uint32},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment