diff options
author | Gabriel Maciel Raad <ffunctor@gmail.com> | 2024-08-22 21:08:37 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-08-23 09:17:33 +0800 |
commit | 4626eb9ad822cd688717fbd797ad23d1730d170f (patch) | |
tree | ec4978b98cf9be92b82c0f75ee61f868a23ee19f /drivers/staging/rtl8192e | |
parent | 2b05e9c6beccc606f28068430031839bd75edf27 (diff) | |
download | lwn-4626eb9ad822cd688717fbd797ad23d1730d170f.tar.gz lwn-4626eb9ad822cd688717fbd797ad23d1730d170f.zip |
Staging: rtl8192e: Fix parenthesis alignment
Fix parenthesis alingment in rtl92e_leisure_ps_enter to silence the
following checkpatch.pl warning:
CHECK: Alignment should match open parenthesis
Signed-off-by: Gabriel Maciel Raad <ffunctor@gmail.com>
Link: https://lore.kernel.org/r/20240823000838.8207-2-ffunctor@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r-- | drivers/staging/rtl8192e/rtl8192e/rtl_ps.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_ps.c b/drivers/staging/rtl8192e/rtl8192e/rtl_ps.c index 5aac9110bff6..1f881c27d4b4 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_ps.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_ps.c @@ -204,7 +204,7 @@ void rtl92e_leisure_ps_enter(struct net_device *dev) &priv->rtllib->pwr_save_ctrl; if (!((priv->rtllib->iw_mode == IW_MODE_INFRA) && - (priv->rtllib->link_state == MAC80211_LINKED))) + (priv->rtllib->link_state == MAC80211_LINKED))) return; if (psc->bLeisurePs) { |