OSDN Git Service

staging: wlan-ng: rename DIDmsg_p2req_readpda_pda in p80211metadef.h
authorTim Collier <osdevtc@gmail.com>
Wed, 26 Sep 2018 22:05:45 +0000 (23:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 28 Sep 2018 12:41:38 +0000 (14:41 +0200)
Rename DIDmsg_p2req_readpda_pda in p80211metadef.h to
DIDMSG_P2REQ_READPDA_PDA to fix "Avoid CamelCase" message from
checkpatch and conform to the coding style guidelines.

Signed-off-by: Tim Collier <osdevtc@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/p80211metadef.h
drivers/staging/wlan-ng/prism2fw.c

index 16b4a57..72c49a6 100644 (file)
 #define DIDMSG_P2REQ_READPDA \
                        (P80211DID_MKSECTION(5) | \
                        P80211DID_MKGROUP(2))
-#define DIDmsg_p2req_readpda_pda \
+#define DIDMSG_P2REQ_READPDA_PDA \
                        (P80211DID_MKSECTION(5) | \
                        P80211DID_MKGROUP(2) | \
                        P80211DID_MKITEM(1) | 0x00000000)
index b33eac4..f85e2fe 100644 (file)
@@ -790,7 +790,7 @@ static int read_cardpda(struct pda *pda, struct wlandevice *wlandev)
        msg->msgcode = DIDMSG_P2REQ_READPDA;
        msg->msglen = sizeof(msg);
        strcpy(msg->devname, wlandev->name);
-       msg->pda.did = DIDmsg_p2req_readpda_pda;
+       msg->pda.did = DIDMSG_P2REQ_READPDA_PDA;
        msg->pda.len = HFA384x_PDA_LEN_MAX;
        msg->pda.status = P80211ENUM_msgitem_status_no_value;
        msg->resultcode.did = DIDmsg_p2req_readpda_resultcode;