mirror of
https://github.com/torvalds/linux.git
synced 2026-07-29 02:31:27 +02:00
staging: rtl8723bs: fix line length warning
Break a long function call across two lines in order to make code easier to read and also comply with the Linux coding style. Problem was found using checkpatch.pl tool. Signed-off-by: Andrea Poldi <andrea@riposetti.com> Link: https://patch.msgid.link/20260317165845.12594-1-andrea@riposetti.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
efa140029a
commit
390c784709
|
|
@ -1769,7 +1769,8 @@ u8 rtw_drvextra_cmd_hdl(struct adapter *padapter, unsigned char *pbuf)
|
|||
rtw_free_assoc_resources(padapter, 1);
|
||||
break;
|
||||
case C2H_WK_CID:
|
||||
rtw_hal_set_hwreg_with_buf(padapter, HW_VAR_C2H_HANDLE, pdrvextra_cmd->pbuf, pdrvextra_cmd->size);
|
||||
rtw_hal_set_hwreg_with_buf(padapter, HW_VAR_C2H_HANDLE,
|
||||
pdrvextra_cmd->pbuf, pdrvextra_cmd->size);
|
||||
break;
|
||||
case DM_RA_MSK_WK_CID:
|
||||
rtw_dm_ra_mask_hdl(padapter, (struct sta_info *)pdrvextra_cmd->pbuf);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user