Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3f441bc authored by Tugce Sirin's avatar Tugce Sirin Committed by Greg Kroah-Hartman
Browse files

Staging: wlan-ng: Fix quoted string split across lines



This patch fixes checkpatch.pl warning quoted string split across lines
in wlan-ng driver.

Signed-off-by: default avatarTugce Sirin <ztugcesirin@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1f997411
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -455,8 +455,7 @@ 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;
@@ -500,8 +499,7 @@ 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;
@@ -511,8 +509,7 @@ 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);
@@ -522,8 +519,7 @@ 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);