Commit 032ae2fd authored by Mrinal Pandey's avatar Mrinal Pandey Committed by Greg Kroah-Hartman

staging: rtl8188eu: Fix an indent coding style issue

Only a single tab space is required after the if statement.
Fix this issue by running scripts/checkpatch.pl on the file.
Signed-off-by: default avatarMrinal Pandey <mrinalmni@gmail.com>
Link: https://lore.kernel.org/r/20200722151900.5dcebtavkdi5cc77@mrinalpandeySigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 12d95169
...@@ -671,8 +671,8 @@ static int sta2sta_data_frame(struct adapter *adapter, ...@@ -671,8 +671,8 @@ static int sta2sta_data_frame(struct adapter *adapter,
if (mcast) { if (mcast) {
/* For AP mode, if DA == MCAST, then BSSID should be also MCAST */ /* For AP mode, if DA == MCAST, then BSSID should be also MCAST */
if (!is_multicast_ether_addr(pattrib->bssid)) { if (!is_multicast_ether_addr(pattrib->bssid)) {
ret = _FAIL; ret = _FAIL;
goto exit; goto exit;
} }
} else { /* not mc-frame */ } else { /* not mc-frame */
/* For AP mode, if DA is non-MCAST, then it must be BSSID, and bssid == BSSID */ /* For AP mode, if DA is non-MCAST, then it must be BSSID, and bssid == BSSID */
......
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