Staging: rtlwifi: base: Modified the line ending with a parenthesis
authorSohil Ladhani <supertakumi86@gmail.com>
Sun, 5 Aug 2018 11:29:55 +0000 (16:59 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 5 Aug 2018 14:09:15 +0000 (16:09 +0200)
This patch fixes the "Lines should not end with a '('" warning reported by
checkpatch.pl script. The line containing 'rtl_mrate_idx_to_arfr_id' function
previously ended with '(', which did not conform to the linux kernel
coding style.

Signed-off-by: Sohil Ladhani <supertakumi86@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtlwifi/base.c

index e46e47d..a4e2041 100644 (file)
@@ -685,9 +685,8 @@ static void _rtl_query_protection_mode(struct ieee80211_hw *hw,
        }
 }
 
-u8 rtl_mrate_idx_to_arfr_id(
-       struct ieee80211_hw *hw, u8 rate_index,
-       enum wireless_mode wirelessmode)
+u8 rtl_mrate_idx_to_arfr_id(struct ieee80211_hw *hw, u8 rate_index,
+                           enum wireless_mode wirelessmode)
 {
        struct rtl_priv *rtlpriv = rtl_priv(hw);
        struct rtl_phy *rtlphy = &rtlpriv->phy;