[PATCH 5/6] wlan-ng: clean up alignment

From: Johannes Czekay
Date: Tue Dec 22 2020 - 17:29:53 EST


This patch cleans up all the alignment related warnings from checkpatch.

Signed-off-by: Johannes Czekay <johannes.czekay@xxxxxx>
Co-developed-by: Nicolai Fischer <nicolai.fischer@xxxxxx>
Signed-off-by: Nicolai Fischer <nicolai.fischer@xxxxxx>
---
drivers/staging/wlan-ng/cfg80211.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/staging/wlan-ng/cfg80211.c b/drivers/staging/wlan-ng/cfg80211.c
index 0e44a0f73a6a..ac62746cf92e 100644
--- a/drivers/staging/wlan-ng/cfg80211.c
+++ b/drivers/staging/wlan-ng/cfg80211.c
@@ -472,8 +472,8 @@ static int prism2_connect(struct wiphy *wiphy, struct net_device *dev,
return -EINVAL;

result = prism2_domibset_uint32(wlandev,
- DIDMIB_DOT11SMT_PRIVACYTBL_WEPDEFAULTKEYID,
- sme->key_idx);
+ DIDMIB_DOT11SMT_PRIVACYTBL_WEPDEFAULTKEYID,
+ sme->key_idx);
if (result)
goto exit;

@@ -584,8 +584,8 @@ static int prism2_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
data = MBM_TO_DBM(mbm);

result = prism2_domibset_uint32(wlandev,
- DIDMIB_DOT11PHY_TXPOWERTABLE_CURRENTTXPOWERLEVEL,
- data);
+ DIDMIB_DOT11PHY_TXPOWERTABLE_CURRENTTXPOWERLEVEL,
+ data);

if (result) {
err = -EFAULT;
--
2.25.1