mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 17:39:23 -04:00
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: Quytelda Kahja <quytelda@tamalin.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d8f20c2f5d
commit
5b8946b13d
@@ -1060,7 +1060,7 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *skb)
|
||||
|
||||
unsigned char *buffer = NULL;
|
||||
unsigned int length = 0;
|
||||
struct hostif_data_request_t *pp;
|
||||
struct hostif_data_request *pp;
|
||||
unsigned char *p;
|
||||
int result = 0;
|
||||
unsigned short eth_proto;
|
||||
|
||||
@@ -67,7 +67,7 @@ struct hostif_hdr {
|
||||
__le16 event;
|
||||
} __packed;
|
||||
|
||||
struct hostif_data_request_t {
|
||||
struct hostif_data_request {
|
||||
struct hostif_hdr header;
|
||||
__le16 auth_type;
|
||||
#define TYPE_DATA 0x0000
|
||||
|
||||
Reference in New Issue
Block a user