summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/include
diff options
context:
space:
mode:
authorFlorian Büstgens2019-01-15 17:16:19 +0100
committerGreg Kroah-Hartman2019-01-15 17:31:52 +0100
commit82f1cebe64ea097a5851386ddee02b4ef45a2ad9 (patch)
tree1465ac480c0c249e0e4d094d1adcc517430fd1b0 /drivers/staging/rtl8188eu/include
parentstaging: Move ralink-gdma to its own directory (diff)
downloadkernel-qcow2-linux-82f1cebe64ea097a5851386ddee02b4ef45a2ad9.tar.gz
kernel-qcow2-linux-82f1cebe64ea097a5851386ddee02b4ef45a2ad9.tar.xz
kernel-qcow2-linux-82f1cebe64ea097a5851386ddee02b4ef45a2ad9.zip
staging: rtl8188eu: Refactoring struct ndis_802_11_ssid from CamelCase to correct code style.
rtl8188eu uses CamelCase for many struct members. Refactors the ndis_802_11_ssid members Ssid and SsidLength to keep correct code style. Issue found by checkpatch. Signed-off-by: Florian Büstgens <flbue@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/include')
-rw-r--r--drivers/staging/rtl8188eu/include/wlan_bssdef.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8188eu/include/wlan_bssdef.h b/drivers/staging/rtl8188eu/include/wlan_bssdef.h
index 5e13a6ddf083..8462c9c2fd39 100644
--- a/drivers/staging/rtl8188eu/include/wlan_bssdef.h
+++ b/drivers/staging/rtl8188eu/include/wlan_bssdef.h
@@ -17,8 +17,8 @@
#define NDIS_802_11_RSSI long /* in dBm */
struct ndis_802_11_ssid {
- u32 SsidLength;
- u8 Ssid[32];
+ u32 ssid_length;
+ u8 ssid[32];
};
enum NDIS_802_11_NETWORK_TYPE {
@@ -180,7 +180,7 @@ struct wlan_bssid_ex {
u32 Length;
unsigned char MacAddress[ETH_ALEN];
u8 Reserved[2];/* 0]: IS beacon frame */
- struct ndis_802_11_ssid Ssid;
+ struct ndis_802_11_ssid ssid;
u32 Privacy;
NDIS_802_11_RSSI Rssi;/* in dBM,raw data ,get from PHY) */
enum NDIS_802_11_NETWORK_TYPE NetworkTypeInUse;