mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
staging: wlan-ng: rename DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked in p80211metadef.h
Rename DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked to DIDMIB_DOT11SMT_PRIVACYTABLE_PRIVACYINVOKED 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
4b3c694ad5
commit
184fcaa193
4 changed files with 5 additions and 5 deletions
|
@ -502,7 +502,7 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
|
|||
* seems reasonable anyways
|
||||
*/
|
||||
result = prism2_domibset_uint32(wlandev,
|
||||
DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked,
|
||||
DIDMIB_DOT11SMT_PRIVACYTABLE_PRIVACYINVOKED,
|
||||
P80211ENUM_truth_true);
|
||||
if (result)
|
||||
goto exit;
|
||||
|
@ -518,7 +518,7 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
|
|||
* and exclude unencrypted
|
||||
*/
|
||||
result = prism2_domibset_uint32(wlandev,
|
||||
DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked,
|
||||
DIDMIB_DOT11SMT_PRIVACYTABLE_PRIVACYINVOKED,
|
||||
P80211ENUM_truth_false);
|
||||
if (result)
|
||||
goto exit;
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
#define DIDMIB_DOT11SMT_PRIVACYTABLE \
|
||||
(P80211DID_MKSECTION(1) | \
|
||||
P80211DID_MKGROUP(6))
|
||||
#define DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked \
|
||||
#define DIDMIB_DOT11SMT_PRIVACYTABLE_PRIVACYINVOKED \
|
||||
(P80211DID_MKSECTION(1) | \
|
||||
P80211DID_MKGROUP(6) | \
|
||||
P80211DID_MKITEM(1) | 0x18000000)
|
||||
|
|
|
@ -226,7 +226,7 @@ static void p80211req_mibset_mibget(struct wlandevice *wlandev,
|
|||
}
|
||||
break;
|
||||
}
|
||||
case DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked:{
|
||||
case DIDMIB_DOT11SMT_PRIVACYTABLE_PRIVACYINVOKED:{
|
||||
u32 *data = (u32 *)mibitem->data;
|
||||
|
||||
p80211req_handle_action(wlandev, data, isget,
|
||||
|
|
|
@ -164,7 +164,7 @@ static struct mibrec mibtab[] = {
|
|||
F_STA | F_WRITE,
|
||||
HFA384x_RID_CNFWEPDEFAULTKEY3, 0, 0,
|
||||
prism2mib_wepdefaultkey},
|
||||
{DIDmib_dot11smt_dot11PrivacyTable_dot11PrivacyInvoked,
|
||||
{DIDMIB_DOT11SMT_PRIVACYTABLE_PRIVACYINVOKED,
|
||||
F_STA | F_READ | F_WRITE,
|
||||
HFA384x_RID_CNFWEPFLAGS, HFA384x_WEPFLAGS_PRIVINVOKED, 0,
|
||||
prism2mib_privacyinvoked},
|
||||
|
|
Loading…
Reference in a new issue