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

Staging: rtl8723bs: Inserting blank line after declaration

Fix following checkpatch.pl warning by inserting blank line
WARNING: Missing a blank line after declarations

Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Jagath Jog J <jagathjog1996@gmail.com>
Link: https://lore.kernel.org/r/20220124034456.8665-4-jagathjog1996@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jagath Jog J and committed by
Greg Kroah-Hartman
56a9847a 424449ef

+5
+5
drivers/staging/rtl8723bs/hal/hal_intf.c
··· 181 181 u8 rtw_hal_check_ips_status(struct adapter *padapter) 182 182 { 183 183 u8 val = false; 184 + 184 185 if (padapter->HalFunc.check_ips_status) 185 186 val = padapter->HalFunc.check_ips_status(padapter); 186 187 ··· 210 209 s32 rtw_hal_mgnt_xmit(struct adapter *padapter, struct xmit_frame *pmgntframe) 211 210 { 212 211 s32 ret = _FAIL; 212 + 213 213 update_mgntframe_attrib_addr(padapter, pmgntframe); 214 214 /* pframe = (u8 *)(pmgntframe->buf_addr) + TXDESC_OFFSET; */ 215 215 /* pwlanhdr = (struct rtw_ieee80211_hdr *)pframe; */ ··· 301 299 u32 rtw_hal_read_bbreg(struct adapter *padapter, u32 RegAddr, u32 BitMask) 302 300 { 303 301 u32 data = 0; 302 + 304 303 if (padapter->HalFunc.read_bbreg) 305 304 data = padapter->HalFunc.read_bbreg(padapter, RegAddr, BitMask); 306 305 return data; ··· 315 312 u32 rtw_hal_read_rfreg(struct adapter *padapter, u32 eRFPath, u32 RegAddr, u32 BitMask) 316 313 { 317 314 u32 data = 0; 315 + 318 316 if (padapter->HalFunc.read_rfreg) 319 317 data = padapter->HalFunc.read_rfreg(padapter, eRFPath, RegAddr, BitMask); 320 318 return data; ··· 389 385 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt) 390 386 { 391 387 s32 ret = _FAIL; 388 + 392 389 if (adapter->HalFunc.c2h_handler) 393 390 ret = adapter->HalFunc.c2h_handler(adapter, c2h_evt); 394 391 return ret;