Commit e157c44a authored by Michael Straube's avatar Michael Straube Committed by Greg Kroah-Hartman

staging: rtl8188eu: cleanup array declaration - style

Cleanup array declaration to clear two 'line over 80 characters'
checkpatch warnings and improve readability.
Signed-off-by: default avatarMichael Straube <straube.linux@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 06b17ed6
...@@ -3836,24 +3836,20 @@ Following are the initialization functions for WiFi MLME ...@@ -3836,24 +3836,20 @@ Following are the initialization functions for WiFi MLME
*****************************************************************************/ *****************************************************************************/
static struct mlme_handler mlme_sta_tbl[] = { static struct mlme_handler mlme_sta_tbl[] = {
{WIFI_ASSOCREQ, "OnAssocReq", &OnAssocReq}, {WIFI_ASSOCREQ, "OnAssocReq", &OnAssocReq},
{WIFI_ASSOCRSP, "OnAssocRsp", &OnAssocRsp}, {WIFI_ASSOCRSP, "OnAssocRsp", &OnAssocRsp},
{WIFI_REASSOCREQ, "OnReAssocReq", &OnAssocReq}, {WIFI_REASSOCREQ, "OnReAssocReq", &OnAssocReq},
{WIFI_REASSOCRSP, "OnReAssocRsp", &OnAssocRsp}, {WIFI_REASSOCRSP, "OnReAssocRsp", &OnAssocRsp},
{WIFI_PROBEREQ, "OnProbeReq", &OnProbeReq}, {WIFI_PROBEREQ, "OnProbeReq", &OnProbeReq},
{WIFI_PROBERSP, "OnProbeRsp", &OnProbeRsp}, {WIFI_PROBERSP, "OnProbeRsp", &OnProbeRsp},
{0, "DoReserved", &DoReserved},
/*---------------------------------------------------------- {0, "DoReserved", &DoReserved},
below 2 are reserved {WIFI_BEACON, "OnBeacon", &OnBeacon},
-----------------------------------------------------------*/ {WIFI_ATIM, "OnATIM", &OnAtim},
{0, "DoReserved", &DoReserved}, {WIFI_DISASSOC, "OnDisassoc", &OnDisassoc},
{0, "DoReserved", &DoReserved}, {WIFI_AUTH, "OnAuth", &OnAuthClient},
{WIFI_BEACON, "OnBeacon", &OnBeacon}, {WIFI_DEAUTH, "OnDeAuth", &OnDeAuth},
{WIFI_ATIM, "OnATIM", &OnAtim}, {WIFI_ACTION, "OnAction", &OnAction},
{WIFI_DISASSOC, "OnDisassoc", &OnDisassoc},
{WIFI_AUTH, "OnAuth", &OnAuthClient},
{WIFI_DEAUTH, "OnDeAuth", &OnDeAuth},
{WIFI_ACTION, "OnAction", &OnAction},
}; };
int init_hw_mlme_ext(struct adapter *padapter) int init_hw_mlme_ext(struct adapter *padapter)
......
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