Rename DIDmsg_lnxreq_autojoin in p80211metadef.h to
DIDMSG_LNXREQ_AUTOJOIN to fix "Avoid CamelCase" message from
checkpatch and conform to the coding style guidelines.

Signed-off-by: Tim Collier <osde...@gmail.com>
---
 drivers/staging/wlan-ng/cfg80211.c      | 4 ++--
 drivers/staging/wlan-ng/p80211metadef.h | 2 +-
 drivers/staging/wlan-ng/prism2sta.c     | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/wlan-ng/cfg80211.c 
b/drivers/staging/wlan-ng/cfg80211.c
index 2622635945db..8bc7a4c31d6c 100644
--- a/drivers/staging/wlan-ng/cfg80211.c
+++ b/drivers/staging/wlan-ng/cfg80211.c
@@ -533,7 +533,7 @@ static int prism2_connect(struct wiphy *wiphy, struct 
net_device *dev,
        /* Now do the actual join. Note there is no way that I can
         * see to request a specific bssid
         */
-       msg_join.msgcode = DIDmsg_lnxreq_autojoin;
+       msg_join.msgcode = DIDMSG_LNXREQ_AUTOJOIN;
 
        memcpy(msg_join.ssid.data.data, sme->ssid, length);
        msg_join.ssid.data.len = length;
@@ -556,7 +556,7 @@ static int prism2_disconnect(struct wiphy *wiphy, struct 
net_device *dev,
        int err = 0;
 
        /* Do a join, with a bogus ssid. Thats the only way I can think of */
-       msg_join.msgcode = DIDmsg_lnxreq_autojoin;
+       msg_join.msgcode = DIDMSG_LNXREQ_AUTOJOIN;
 
        memcpy(msg_join.ssid.data.data, "---", 3);
        msg_join.ssid.data.len = 3;
diff --git a/drivers/staging/wlan-ng/p80211metadef.h 
b/drivers/staging/wlan-ng/p80211metadef.h
index 14c5500799a3..a217dc7dfcfc 100644
--- a/drivers/staging/wlan-ng/p80211metadef.h
+++ b/drivers/staging/wlan-ng/p80211metadef.h
@@ -97,7 +97,7 @@
 #define DIDMSG_LNXREQ_COMMSQUALITY \
                        (P80211DID_MKSECTION(3) | \
                        P80211DID_MKGROUP(4))
-#define DIDmsg_lnxreq_autojoin \
+#define DIDMSG_LNXREQ_AUTOJOIN \
                        (P80211DID_MKSECTION(3) | \
                        P80211DID_MKGROUP(5))
 #define DIDmsg_p2req_readpda \
diff --git a/drivers/staging/wlan-ng/prism2sta.c 
b/drivers/staging/wlan-ng/prism2sta.c
index 6ca444c5bb59..3fef888d34a7 100644
--- a/drivers/staging/wlan-ng/prism2sta.c
+++ b/drivers/staging/wlan-ng/prism2sta.c
@@ -355,7 +355,7 @@ static int prism2sta_mlmerequest(struct wlandevice *wlandev,
                pr_debug("Received mlme wlansniff request\n");
                result = prism2mgmt_wlansniff(wlandev, msg);
                break;
-       case DIDmsg_lnxreq_autojoin:
+       case DIDMSG_LNXREQ_AUTOJOIN:
                pr_debug("Received mlme autojoin request\n");
                result = prism2mgmt_autojoin(wlandev, msg);
                break;
-- 
2.11.0

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to