From: Quytelda Kahja Date: Sat, 31 Mar 2018 06:08:01 +0000 (-0700) Subject: staging: ks7010: Remove trailing _t from 'struct cf_parms_t'. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=7291307bd99b9e576604644fc0e3ad75e66e7431;p=openwrt%2Fstaging%2Fblogic.git staging: ks7010: Remove trailing _t from 'struct cf_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 cf_parms_t' with 'struct cf_parms'. Signed-off-by: Quytelda Kahja Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/ks7010/ks_hostif.h b/drivers/staging/ks7010/ks_hostif.h index 6f22bf81af15..a846a7e53021 100644 --- a/drivers/staging/ks7010/ks_hostif.h +++ b/drivers/staging/ks7010/ks_hostif.h @@ -226,7 +226,7 @@ struct ds_parms { u8 channel; } __packed; -struct cf_parms_t { +struct cf_parms { u8 count; u8 period; __le16 max_duration; @@ -279,7 +279,7 @@ struct link_ap_info_t { struct rate_set8 rate_set; /* +14 */ struct fh_parms fh_parameter; /* +24 */ struct ds_parms ds_parameter; /* +29 */ - struct cf_parms_t cf_parameter; /* +30 */ + struct cf_parms cf_parameter; /* +30 */ struct ibss_parms_t ibss_parameter; /* +36 */ struct erp_params_t erp_parameter; /* +38 */ u8 pad1; /* +39 */