staging: wilc1000: rename enum SITESURVEY to use lowercase
Cleanup patch to have enum in lowercase as per linux coding style. Signed-off-by: Ajay Singh <ajay.kathat@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
05b9eaa7fc
commit
90824b7cdf
|
@ -635,7 +635,7 @@ static void handle_cfg_param(struct work_struct *work)
|
|||
i++;
|
||||
}
|
||||
if (param->flag & SITE_SURVEY) {
|
||||
enum SITESURVEY enabled = param->site_survey_enabled;
|
||||
enum site_survey enabled = param->site_survey_enabled;
|
||||
|
||||
if (enabled < 3) {
|
||||
wid_list[i].id = WID_SITE_SURVEY;
|
||||
|
|
|
@ -113,7 +113,7 @@ struct cfg_param_attr {
|
|||
u8 txop_prot_disabled;
|
||||
u16 beacon_interval;
|
||||
u16 dtim_period;
|
||||
enum SITESURVEY site_survey_enabled;
|
||||
enum site_survey site_survey_enabled;
|
||||
u16 site_survey_scan_time;
|
||||
u8 scan_source;
|
||||
u16 active_scan_time;
|
||||
|
|
|
@ -138,7 +138,7 @@ enum AUTHTYPE {
|
|||
IEEE8021 = 5
|
||||
};
|
||||
|
||||
enum SITESURVEY {
|
||||
enum site_survey {
|
||||
SITE_SURVEY_1CH = 0,
|
||||
SITE_SURVEY_ALL_CH = 1,
|
||||
SITE_SURVEY_OFF = 2
|
||||
|
|
Loading…
Reference in New Issue