Commit 5b8946b1 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: ks7010: Remove trailing _t from 'struct hostif_data_request_t'.

The "_t" suffix is not needed for structure names in this driver, and is a
reflection of an older typedef system that is no longer in place. Replace
all occurences of 'struct hostif_data_request_t' with 'struct
hostif_data_request'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d8f20c2f
...@@ -1060,7 +1060,7 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb) ...@@ -1060,7 +1060,7 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb)
unsigned char *buffer = NULL; unsigned char *buffer = NULL;
unsigned int length = 0; unsigned int length = 0;
struct hostif_data_request_t *pp; struct hostif_data_request *pp;
unsigned char *p; unsigned char *p;
int result = 0; int result = 0;
unsigned short eth_proto; unsigned short eth_proto;
......
...@@ -67,7 +67,7 @@ struct hostif_hdr { ...@@ -67,7 +67,7 @@ struct hostif_hdr {
__le16 event; __le16 event;
} __packed; } __packed;
struct hostif_data_request_t { struct hostif_data_request {
struct hostif_hdr header; struct hostif_hdr header;
__le16 auth_type; __le16 auth_type;
#define TYPE_DATA 0x0000 #define TYPE_DATA 0x0000
......
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