]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: rtl8723bs: fix line length warning
authorAndrea Poldi <andrea@riposetti.com>
Tue, 17 Mar 2026 16:59:40 +0000 (16:59 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Mar 2026 15:57:10 +0000 (16:57 +0100)
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>
drivers/staging/rtl8723bs/core/rtw_cmd.c

index 8cd2fdbe417d64c05289a56c1bcd8e34019c4260..c1185c25ed3699e0d95305ac5ec0b34b43d7484d 100644 (file)
@@ -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);