mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 01:32:47 -04:00
staging: rtl8192e: rtl_wx: Fix BRACES warning
Fix checkpatch BRACES warning. Signed-off-by: Mateusz Kulikowski <mateusz.kulikowski@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ba72f25b25
commit
a2e681faa5
@@ -819,13 +819,10 @@ static int _rtl92e_wx_set_retry(struct net_device *dev,
|
||||
err = -EINVAL;
|
||||
goto exit;
|
||||
}
|
||||
if (wrqu->retry.flags & IW_RETRY_MAX) {
|
||||
if (wrqu->retry.flags & IW_RETRY_MAX)
|
||||
priv->retry_rts = wrqu->retry.value;
|
||||
|
||||
} else {
|
||||
else
|
||||
priv->retry_data = wrqu->retry.value;
|
||||
}
|
||||
|
||||
|
||||
rtl92e_commit(dev);
|
||||
exit:
|
||||
|
||||
Reference in New Issue
Block a user