From 1b873bd4ead85b9f89a673b9d83ce7fa0d555e4b Mon Sep 17 00:00:00 2001 From: Santha Meena Ramamoorthy Date: Wed, 28 Feb 2018 12:40:48 -0800 Subject: [PATCH] staging: rtl8192e: move logical continuation to previous line Move logical continuation '&&' to the previous line to conform to the Linux kernel coding style. Issue found using checkpatch. Signed-off-by: Santha Meena Ramamoorthy Acked-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192e/rtllib_rx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8192e/rtllib_rx.c b/drivers/staging/rtl8192e/rtllib_rx.c index 30f72d220af1..fa580ce1cf43 100644 --- a/drivers/staging/rtl8192e/rtllib_rx.c +++ b/drivers/staging/rtl8192e/rtllib_rx.c @@ -2644,8 +2644,8 @@ static inline void rtllib_process_probe_response( (network->ssid_len ? 1 : 0))) { update_network(ieee, &ieee->current_network, network); if ((ieee->current_network.mode == IEEE_N_24G || - ieee->current_network.mode == IEEE_G) - && ieee->current_network.berp_info_valid) { + ieee->current_network.mode == IEEE_G) && + ieee->current_network.berp_info_valid) { if (ieee->current_network.erp_value & ERP_UseProtection) ieee->current_network.buseprotection = true; else -- 2.11.0