mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-13 16:29:25 -04:00
staging: ks7010: Remove trailing _t from 'struct channel_list_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 channel_list_t' with 'struct channel_list'. 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
3ff6110d34
commit
e1a79cbda3
@@ -81,7 +81,7 @@ struct hostif_data_request {
|
||||
#define TYPE_GMK2 0x0003
|
||||
|
||||
#define CHANNEL_LIST_MAX_SIZE 14
|
||||
struct channel_list_t {
|
||||
struct channel_list {
|
||||
u8 size;
|
||||
u8 body[CHANNEL_LIST_MAX_SIZE];
|
||||
u8 pad;
|
||||
@@ -378,7 +378,7 @@ struct hostif_infrastructure_set_request_t {
|
||||
struct ssid_t ssid;
|
||||
__le16 beacon_lost_count;
|
||||
__le16 auth_type;
|
||||
struct channel_list_t channel_list;
|
||||
struct channel_list channel_list;
|
||||
u8 bssid[ETH_ALEN];
|
||||
} __packed;
|
||||
|
||||
@@ -413,7 +413,7 @@ struct hostif_adhoc_set2_request_t {
|
||||
struct hostif_request_t request;
|
||||
__le16 reserved;
|
||||
struct ssid_t ssid;
|
||||
struct channel_list_t channel_list;
|
||||
struct channel_list channel_list;
|
||||
u8 bssid[ETH_ALEN];
|
||||
} __packed;
|
||||
|
||||
@@ -461,7 +461,7 @@ struct hostif_bss_scan_request_t {
|
||||
u8 pad[3];
|
||||
__le32 ch_time_min;
|
||||
__le32 ch_time_max;
|
||||
struct channel_list_t channel_list;
|
||||
struct channel_list channel_list;
|
||||
struct ssid_t ssid;
|
||||
} __packed;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user