Commit e35baeb0 authored by Juliana Rodrigues's avatar Juliana Rodrigues Committed by Greg Kroah-Hartman

staging: wlan-ng: renames hfa384x_ChInfoResultSub to avoid camelcase

Renames the camelcased struct hfa384x_ChInfoResultSub to
hfa384x_ch_info_result_sub in order to fix a checkpatch warning.
Signed-off-by: default avatarJuliana Rodrigues <juliana.orod@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b263dd5e
......@@ -678,7 +678,7 @@ struct hfa384x_scan_result {
} __packed;
/*-- Inquiry Frame, Diagnose: ChInfo Results & Subfields--*/
struct hfa384x_ChInfoResultSub {
struct hfa384x_ch_info_result_sub {
u16 chid;
u16 anl;
u16 pnl;
......@@ -690,7 +690,7 @@ struct hfa384x_ChInfoResultSub {
struct hfa384x_ChInfoResult {
u16 scanchannels;
struct hfa384x_ChInfoResultSub result[HFA384x_CHINFORESULT_MAX];
struct hfa384x_ch_info_result_sub result[HFA384x_CHINFORESULT_MAX];
} __packed;
/*-- Inquiry Frame, Diagnose: Host Scan Results & Subfields--*/
......
......@@ -1139,8 +1139,8 @@ static void prism2sta_inf_chinforesults(struct wlandevice *wlandev,
le16_to_cpu(inf->info.chinforesult.scanchannels);
for (i = 0, n = 0; i < HFA384x_CHINFORESULT_MAX; i++) {
struct hfa384x_ChInfoResultSub *result;
struct hfa384x_ChInfoResultSub *chinforesult;
struct hfa384x_ch_info_result_sub *result;
struct hfa384x_ch_info_result_sub *chinforesult;
int chan;
if (!(hw->channel_info.results.scanchannels & (1 << i)))
......
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