diff options
author | Gabriel Tassinari <gabrieldtassinari@gmail.com> | 2024-08-29 18:40:31 -0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-09-03 10:33:35 +0200 |
commit | 37d1e01a6117ed88ce0c62c07717a18f5c98eb8c (patch) | |
tree | e37eb56b4901005eb27a75f674eaab77f74507e4 /drivers/staging/rtl8192e | |
parent | eea0007f6af778620aff51223f0de064e0df00d2 (diff) | |
download | lwn-37d1e01a6117ed88ce0c62c07717a18f5c98eb8c.tar.gz lwn-37d1e01a6117ed88ce0c62c07717a18f5c98eb8c.zip |
staging: rtl8192e: Fix parenthesis alignment in rtl_core.c
fix parenthesis alignment in _rtl92e_qos_handle_probe_response to
silence checkpatch warning:
CHECK: Alignment should match open parenthesis
Signed-off-by: Gabriel Tassinari <gabrieldtassinari@gmail.com>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/20240829214031.4893-1-gabrieldtassinari@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_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index ad21263e725f..75192041008d 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -322,7 +322,7 @@ static int _rtl92e_qos_handle_probe_response(struct r8192_priv *priv, if (network->flags & NETWORK_HAS_QOS_MASK) { if (active_network && - (network->flags & NETWORK_HAS_QOS_PARAMETERS)) + (network->flags & NETWORK_HAS_QOS_PARAMETERS)) network->qos_data.active = network->qos_data.supported; if ((network->qos_data.active == 1) && (active_network == 1) && |