Commit 229a0a18 authored by Quytelda Kahja's avatar Quytelda Kahja Committed by Greg Kroah-Hartman

staging: ks7010: Remove trailing _t from 'struct fh_parms_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 fh_parms_t' with 'struct fh_parms'.
Signed-off-by: default avatarQuytelda Kahja <quytelda@tamalin.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9feae3b1
...@@ -215,7 +215,7 @@ struct rate_set8 { ...@@ -215,7 +215,7 @@ struct rate_set8 {
u8 rate_pad; u8 rate_pad;
} __packed; } __packed;
struct fh_parms_t { struct fh_parms {
__le16 dwell_time; __le16 dwell_time;
u8 hop_set; u8 hop_set;
u8 hop_pattern; u8 hop_pattern;
...@@ -277,7 +277,7 @@ struct link_ap_info_t { ...@@ -277,7 +277,7 @@ struct link_ap_info_t {
__le16 beacon_period; /* +10 */ __le16 beacon_period; /* +10 */
__le16 capability; /* +12 */ __le16 capability; /* +12 */
struct rate_set8 rate_set; /* +14 */ struct rate_set8 rate_set; /* +14 */
struct fh_parms_t fh_parameter; /* +24 */ struct fh_parms 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 */
......
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