Commit 9feae3b1 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: ks7010: Remove trailing _t from 'struct rate_set8_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 rate_set8_t' with 'struct rate_set8'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8eecc3b5
...@@ -209,7 +209,7 @@ struct ssid { ...@@ -209,7 +209,7 @@ struct ssid {
} __packed; } __packed;
#define RATE_SET_MAX_SIZE 16 #define RATE_SET_MAX_SIZE 16
struct rate_set8_t { struct rate_set8 {
u8 size; u8 size;
u8 body[8]; u8 body[8];
u8 rate_pad; u8 rate_pad;
...@@ -276,14 +276,14 @@ struct link_ap_info_t { ...@@ -276,14 +276,14 @@ struct link_ap_info_t {
u8 pad0; /* +09 */ u8 pad0; /* +09 */
__le16 beacon_period; /* +10 */ __le16 beacon_period; /* +10 */
__le16 capability; /* +12 */ __le16 capability; /* +12 */
struct rate_set8_t rate_set; /* +14 */ struct rate_set8 rate_set; /* +14 */
struct fh_parms_t fh_parameter; /* +24 */ struct fh_parms_t fh_parameter; /* +24 */
struct ds_parms_t ds_parameter; /* +29 */ struct ds_parms_t ds_parameter; /* +29 */
struct cf_parms_t cf_parameter; /* +30 */ struct cf_parms_t cf_parameter; /* +30 */
struct ibss_parms_t ibss_parameter; /* +36 */ struct ibss_parms_t ibss_parameter; /* +36 */
struct erp_params_t erp_parameter; /* +38 */ struct erp_params_t erp_parameter; /* +38 */
u8 pad1; /* +39 */ u8 pad1; /* +39 */
struct rate_set8_t ext_rate_set; /* +40 */ struct rate_set8 ext_rate_set; /* +40 */
u8 DTIM_period; /* +50 */ u8 DTIM_period; /* +50 */
u8 rsn_mode; /* +51 */ u8 rsn_mode; /* +51 */
#define RSN_MODE_NONE 0 #define RSN_MODE_NONE 0
......
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