Commit 90824b7c authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: rename enum SITESURVEY to use lowercase

Cleanup patch to have enum in lowercase as per linux coding style.
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Reviewed-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 05b9eaa7
...@@ -635,7 +635,7 @@ static void handle_cfg_param(struct work_struct *work) ...@@ -635,7 +635,7 @@ static void handle_cfg_param(struct work_struct *work)
i++; i++;
} }
if (param->flag & SITE_SURVEY) { if (param->flag & SITE_SURVEY) {
enum SITESURVEY enabled = param->site_survey_enabled; enum site_survey enabled = param->site_survey_enabled;
if (enabled < 3) { if (enabled < 3) {
wid_list[i].id = WID_SITE_SURVEY; wid_list[i].id = WID_SITE_SURVEY;
......
...@@ -113,7 +113,7 @@ struct cfg_param_attr { ...@@ -113,7 +113,7 @@ struct cfg_param_attr {
u8 txop_prot_disabled; u8 txop_prot_disabled;
u16 beacon_interval; u16 beacon_interval;
u16 dtim_period; u16 dtim_period;
enum SITESURVEY site_survey_enabled; enum site_survey site_survey_enabled;
u16 site_survey_scan_time; u16 site_survey_scan_time;
u8 scan_source; u8 scan_source;
u16 active_scan_time; u16 active_scan_time;
......
...@@ -138,7 +138,7 @@ enum AUTHTYPE { ...@@ -138,7 +138,7 @@ enum AUTHTYPE {
IEEE8021 = 5 IEEE8021 = 5
}; };
enum SITESURVEY { enum site_survey {
SITE_SURVEY_1CH = 0, SITE_SURVEY_1CH = 0,
SITE_SURVEY_ALL_CH = 1, SITE_SURVEY_ALL_CH = 1,
SITE_SURVEY_OFF = 2 SITE_SURVEY_OFF = 2
......
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