staging: wlan-ng: fix checkpatch warnings
clean up checkpatch.pl in prism2sta.c WARNING : line over 80 characters Signed-off-by: chaehyun lim <chaehyun.lim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4bff39dfb7
commit
613462e1e4
1 changed files with 14 additions and 9 deletions
|
@ -428,7 +428,8 @@ u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
|
|||
result = hfa384x_drvr_start(hw);
|
||||
if (result) {
|
||||
netdev_err(wlandev->netdev,
|
||||
"hfa384x_drvr_start() failed,result=%d\n", (int)result);
|
||||
"hfa384x_drvr_start() failed,result=%d\n",
|
||||
(int)result);
|
||||
result =
|
||||
P80211ENUM_resultcode_implementation_failure;
|
||||
wlandev->msdstate = WLAN_MSD_HWPRESENT;
|
||||
|
@ -471,7 +472,8 @@ u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
|
|||
result = hfa384x_drvr_start(hw);
|
||||
if (result) {
|
||||
netdev_err(wlandev->netdev,
|
||||
"hfa384x_drvr_start() failed,result=%d\n", (int)result);
|
||||
"hfa384x_drvr_start() failed,result=%d\n",
|
||||
(int)result);
|
||||
result =
|
||||
P80211ENUM_resultcode_implementation_failure;
|
||||
wlandev->msdstate = WLAN_MSD_HWPRESENT;
|
||||
|
@ -481,7 +483,8 @@ u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
|
|||
result = prism2sta_getcardinfo(wlandev);
|
||||
if (result) {
|
||||
netdev_err(wlandev->netdev,
|
||||
"prism2sta_getcardinfo() failed,result=%d\n", (int)result);
|
||||
"prism2sta_getcardinfo() failed,result=%d\n",
|
||||
(int)result);
|
||||
result =
|
||||
P80211ENUM_resultcode_implementation_failure;
|
||||
hfa384x_drvr_stop(hw);
|
||||
|
@ -491,7 +494,8 @@ u32 prism2sta_ifstate(wlandevice_t *wlandev, u32 ifstate)
|
|||
result = prism2sta_globalsetup(wlandev);
|
||||
if (result) {
|
||||
netdev_err(wlandev->netdev,
|
||||
"prism2sta_globalsetup() failed,result=%d\n", (int)result);
|
||||
"prism2sta_globalsetup() failed,result=%d\n",
|
||||
(int)result);
|
||||
result =
|
||||
P80211ENUM_resultcode_implementation_failure;
|
||||
hfa384x_drvr_stop(hw);
|
||||
|
@ -1244,9 +1248,9 @@ void prism2sta_processing_defer(struct work_struct *data)
|
|||
HFA384x_RID_CURRENTSSID, result);
|
||||
return;
|
||||
}
|
||||
prism2mgmt_bytestr2pstr((struct hfa384x_bytestr *) &ssid,
|
||||
(p80211pstrd_t *) &
|
||||
wlandev->ssid);
|
||||
prism2mgmt_bytestr2pstr(
|
||||
(struct hfa384x_bytestr *) &ssid,
|
||||
(p80211pstrd_t *) &wlandev->ssid);
|
||||
|
||||
/* Collect the port status */
|
||||
result = hfa384x_drvr_getconfig16(hw,
|
||||
|
@ -1658,8 +1662,9 @@ static void prism2sta_inf_authreq_defer(wlandevice_t *wlandev,
|
|||
if (hw->authlist.cnt >= WLAN_AUTH_MAX) {
|
||||
rec.status = P80211ENUM_status_ap_full;
|
||||
} else {
|
||||
ether_addr_copy(hw->authlist.addr[hw->authlist.cnt],
|
||||
rec.address);
|
||||
ether_addr_copy(
|
||||
hw->authlist.addr[hw->authlist.cnt],
|
||||
rec.address);
|
||||
hw->authlist.cnt++;
|
||||
added = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue