All of the code is #if 0'd out, and the change just replaces a
space with a newline, so this obviously doesn't change anything.

However, the code is highly suspect: The b_c2h_bt_inquiry_page member
has type bool, and applying the ++ operator to a bool is equivalent to
setting it true (using -- is equivalent to flipping it).

Signed-off-by: Rasmus Villemoes <[email protected]>
---
 drivers/staging/rtl8821ae/rtl8821ae/hal_btc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8821ae/rtl8821ae/hal_btc.c 
b/drivers/staging/rtl8821ae/rtl8821ae/hal_btc.c
index 7b1d113..b4c68f0 100644
--- a/drivers/staging/rtl8821ae/rtl8821ae/hal_btc.c
+++ b/drivers/staging/rtl8821ae/rtl8821ae/hal_btc.c
@@ -1711,7 +1711,8 @@ void rtl8821ae_dm_bt_inq_page_monitor(struct ieee80211_hw 
*hw)
        if (hal_coex_8821ae.b_c2h_bt_inquiry_page) {
                hal_coex_8821ae.b_c2h_bt_inquiry_page++;
                // bt inquiry or page is started.
-       } if(hal_coex_8821ae.b_c2h_bt_inquiry_page) {
+       }
+       if(hal_coex_8821ae.b_c2h_bt_inquiry_page) {
                rtlpcipriv->btcoexist.current_state |= 
BT_COEX_STATE_BT_INQ_PAGE;
                if(hal_coex_8821ae.bt_inquiry_page_cnt >= 4)
                        hal_coex_8821ae.bt_inquiry_page_cnt = 0;
-- 
1.9.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to