diff options
author | Sergio Paracuellos <sergio.paracuellos@gmail.com> | 2016-09-25 15:34:52 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-25 19:27:04 +0200 |
commit | 3fd1e3fcb929e6b51598f76cfc0615259b8cfe54 (patch) | |
tree | 9e448124f751af01d307149e3487192d3d30c524 /drivers/staging/wlan-ng/p80211req.c | |
parent | 8c52425a1303f0ad1f385a5e7335d0e75dd014fb (diff) |
staging: wlan-ng: avoid new typedef: p80211pstrd_t
This patch fixes the following checkpatch.pl warning in p80211types.h:
WARNING: do not add new typedefs
It applies for typedef p80211pstrd_t
Signed-off-by: Sergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wlan-ng/p80211req.c')
-rw-r--r-- | drivers/staging/wlan-ng/p80211req.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wlan-ng/p80211req.c b/drivers/staging/wlan-ng/p80211req.c index 010e5dcc51e3..61962d72bdd6 100644 --- a/drivers/staging/wlan-ng/p80211req.c +++ b/drivers/staging/wlan-ng/p80211req.c @@ -196,8 +196,8 @@ static void p80211req_mibset_mibget(struct wlandevice *wlandev, int isget) { p80211itemd_t *mibitem = (p80211itemd_t *)mib_msg->mibattribute.data; - p80211pstrd_t *pstr = (p80211pstrd_t *)mibitem->data; - u8 *key = mibitem->data + sizeof(p80211pstrd_t); + struct p80211pstrd *pstr = (struct p80211pstrd *)mibitem->data; + u8 *key = mibitem->data + sizeof(struct p80211pstrd); switch (mibitem->did) { case DIDmib_dot11smt_dot11WEPDefaultKeysTable_key(1): |