Commit ac033ec9 authored by Sergio Paracuellos's avatar Sergio Paracuellos Committed by Greg Kroah-Hartman

staging: wlan-ng: avoid new typedef: p80211itemd_t

This patch fixes the following checkpatch.pl warning in p80211types.h:
WARNING: do not add new typedefs

It applies for typedef p80211itemd_t
Signed-off-by: default avatarSergio Paracuellos <sergio.paracuellos@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cf796937
...@@ -195,7 +195,7 @@ static void p80211req_mibset_mibget(struct wlandevice *wlandev, ...@@ -195,7 +195,7 @@ static void p80211req_mibset_mibget(struct wlandevice *wlandev,
struct p80211msg_dot11req_mibget *mib_msg, struct p80211msg_dot11req_mibget *mib_msg,
int isget) int isget)
{ {
p80211itemd_t *mibitem = (p80211itemd_t *)mib_msg->mibattribute.data; struct p80211itemd *mibitem = (struct p80211itemd *)mib_msg->mibattribute.data;
struct p80211pstrd *pstr = (struct p80211pstrd *)mibitem->data; struct p80211pstrd *pstr = (struct p80211pstrd *)mibitem->data;
u8 *key = mibitem->data + sizeof(struct p80211pstrd); u8 *key = mibitem->data + sizeof(struct p80211pstrd);
......
...@@ -262,12 +262,12 @@ struct p80211item { ...@@ -262,12 +262,12 @@ struct p80211item {
} __packed; } __packed;
/* prototype template w/ data item */ /* prototype template w/ data item */
typedef struct p80211itemd { struct p80211itemd {
u32 did; u32 did;
u16 status; u16 status;
u16 len; u16 len;
u8 data[0]; u8 data[0];
} __packed p80211itemd_t; } __packed;
/* message data item for int, BOUNDEDINT, ENUMINT */ /* message data item for int, BOUNDEDINT, ENUMINT */
typedef struct p80211item_uint32 { typedef struct p80211item_uint32 {
......
...@@ -243,7 +243,7 @@ static int prism2_fwapply(const struct ihex_binrec *rfptr, ...@@ -243,7 +243,7 @@ static int prism2_fwapply(const struct ihex_binrec *rfptr,
{ {
signed int result = 0; signed int result = 0;
struct p80211msg_dot11req_mibget getmsg; struct p80211msg_dot11req_mibget getmsg;
p80211itemd_t *item; struct p80211itemd *item;
u32 *data; u32 *data;
/* Initialize the data structures */ /* Initialize the data structures */
...@@ -293,7 +293,7 @@ static int prism2_fwapply(const struct ihex_binrec *rfptr, ...@@ -293,7 +293,7 @@ static int prism2_fwapply(const struct ihex_binrec *rfptr,
getmsg.resultcode.did = DIDmsg_dot11req_mibget_resultcode; getmsg.resultcode.did = DIDmsg_dot11req_mibget_resultcode;
getmsg.resultcode.status = P80211ENUM_msgitem_status_no_value; getmsg.resultcode.status = P80211ENUM_msgitem_status_no_value;
item = (p80211itemd_t *)getmsg.mibattribute.data; item = (struct p80211itemd *)getmsg.mibattribute.data;
item->did = DIDmib_p2_p2NIC_p2PRISupRange; item->did = DIDmib_p2_p2NIC_p2PRISupRange;
item->status = P80211ENUM_msgitem_status_no_value; item->status = P80211ENUM_msgitem_status_no_value;
......
...@@ -266,7 +266,7 @@ int prism2mgmt_mibset_mibget(struct wlandevice *wlandev, void *msgp) ...@@ -266,7 +266,7 @@ int prism2mgmt_mibset_mibget(struct wlandevice *wlandev, void *msgp)
u16 which; u16 which;
struct p80211msg_dot11req_mibset *msg = msgp; struct p80211msg_dot11req_mibset *msg = msgp;
p80211itemd_t *mibitem; struct p80211itemd *mibitem;
msg->resultcode.status = P80211ENUM_msgitem_status_data_ok; msg->resultcode.status = P80211ENUM_msgitem_status_data_ok;
msg->resultcode.data = P80211ENUM_resultcode_success; msg->resultcode.data = P80211ENUM_resultcode_success;
...@@ -284,7 +284,7 @@ int prism2mgmt_mibset_mibget(struct wlandevice *wlandev, void *msgp) ...@@ -284,7 +284,7 @@ int prism2mgmt_mibset_mibget(struct wlandevice *wlandev, void *msgp)
** MIB table. ** MIB table.
*/ */
mibitem = (p80211itemd_t *)msg->mibattribute.data; mibitem = (struct p80211itemd *)msg->mibattribute.data;
for (mib = mibtab; mib->did != 0; mib++) for (mib = mibtab; mib->did != 0; mib++)
if (mib->did == mibitem->did && (mib->flag & which)) if (mib->did == mibitem->did && (mib->flag & which))
......
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