mirror of https://gitee.com/openkylin/linux.git
staging: wlan-ng: renames hfa384x_ScanResult to avoid camelcase
Renames the camelcased struct hfa384x_ScanResult to hfa384x_scan_result in order to fix a checkpatch warning. Signed-off-by: Juliana Rodrigues <juliana.orod@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b244edc632
commit
040a7bd4ec
|
@ -671,7 +671,7 @@ struct hfa384x_ScanResultSub {
|
||||||
u16 proberesp_rate;
|
u16 proberesp_rate;
|
||||||
} __packed;
|
} __packed;
|
||||||
|
|
||||||
struct hfa384x_ScanResult {
|
struct hfa384x_scan_result {
|
||||||
u16 rsvd;
|
u16 rsvd;
|
||||||
u16 scanreason;
|
u16 scanreason;
|
||||||
struct hfa384x_ScanResultSub result[HFA384x_SCANRESULT_MAX];
|
struct hfa384x_ScanResultSub result[HFA384x_SCANRESULT_MAX];
|
||||||
|
@ -764,7 +764,7 @@ struct hfa384x_KeyIDChanged {
|
||||||
union hfa384x_infodata {
|
union hfa384x_infodata {
|
||||||
struct hfa384x_CommTallies16 commtallies16;
|
struct hfa384x_CommTallies16 commtallies16;
|
||||||
struct hfa384x_comm_tallies_32 commtallies32;
|
struct hfa384x_comm_tallies_32 commtallies32;
|
||||||
struct hfa384x_ScanResult scanresult;
|
struct hfa384x_scan_result scanresult;
|
||||||
struct hfa384x_ChInfoResult chinforesult;
|
struct hfa384x_ChInfoResult chinforesult;
|
||||||
struct hfa384x_HScanResult hscanresult;
|
struct hfa384x_HScanResult hscanresult;
|
||||||
struct hfa384x_LinkStatus linkstatus;
|
struct hfa384x_LinkStatus linkstatus;
|
||||||
|
|
|
@ -1037,7 +1037,7 @@ static void prism2sta_inf_scanresults(struct wlandevice *wlandev,
|
||||||
{
|
{
|
||||||
struct hfa384x *hw = wlandev->priv;
|
struct hfa384x *hw = wlandev->priv;
|
||||||
int nbss;
|
int nbss;
|
||||||
struct hfa384x_ScanResult *sr = &(inf->info.scanresult);
|
struct hfa384x_scan_result *sr = &inf->info.scanresult;
|
||||||
int i;
|
int i;
|
||||||
struct hfa384x_JoinRequest_data joinreq;
|
struct hfa384x_JoinRequest_data joinreq;
|
||||||
int result;
|
int result;
|
||||||
|
|
Loading…
Reference in New Issue