Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

rtlwifi: Fix blank line errors in main header files

The errors consist of multiple blank lines, and a missing blank line
after the declarations.

There are no code changes.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>

authored by

Larry Finger and committed by
Kalle Valo
93665097 1dc89bb9

+2 -7
+1 -4
drivers/net/wireless/realtek/rtlwifi/usb.h
··· 17 17 #define USB_HIGH_SPEED_BULK_SIZE 512 18 18 #define USB_FULL_SPEED_BULK_SIZE 64 19 19 20 - 21 20 #define RTL_USB_MAX_TXQ_NUM 4 /* max tx queue */ 22 21 #define RTL_USB_MAX_EP_NUM 6 /* max ep number */ 23 22 #define RTL_USB_MAX_TX_URBS_NUM 8 ··· 52 53 u32 ep_num) 53 54 { 54 55 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb); 56 + 55 57 info->rate_driver_data[0] = rtlusb; 56 58 info->rate_driver_data[1] = (void *)(__kernel_size_t)ep_num; 57 59 } 58 - 59 60 60 61 /* Add suspend/resume later */ 61 62 enum rtl_usb_state { ··· 131 132 132 133 #define rtl_usbpriv(hw) (((struct rtl_usb_priv *)(rtl_priv(hw))->priv)) 133 134 #define rtl_usbdev(usbpriv) (&((usbpriv)->dev)) 134 - 135 - 136 135 137 136 int rtl_usb_probe(struct usb_interface *intf, 138 137 const struct usb_device_id *id,
+1 -3
drivers/net/wireless/realtek/rtlwifi/wifi.h
··· 2143 2143 u32 macid_valid_entry[2]; 2144 2144 }; 2145 2145 2146 - 2147 2146 struct rt_link_detect { 2148 2147 /* count for roaming */ 2149 2148 u32 bcn_rx_inperiod; ··· 2842 2843 #define rtl_efuse(rtlpriv) (&((rtlpriv)->efuse)) 2843 2844 #define rtl_psc(rtlpriv) (&((rtlpriv)->psc)) 2844 2845 2845 - 2846 2846 /* Bluetooth Co-existence Related */ 2847 2847 2848 2848 enum bt_ant_num { ··· 2890 2892 BT_RADIO_SHARED = 0, 2891 2893 BT_RADIO_INDIVIDUAL = 1, 2892 2894 }; 2893 - 2894 2895 2895 2896 /**************************************** 2896 2897 * mem access macro define start ··· 3226 3229 u8 *mac_addr) 3227 3230 { 3228 3231 struct rtl_mac *mac = rtl_mac(rtl_priv(hw)); 3232 + 3229 3233 return ieee80211_find_sta(mac->vif, mac_addr); 3230 3234 } 3231 3235