From fc6b034e275923f9f2b2121d99f42bb3d62bb28d Mon Sep 17 00:00:00 2001 From: Ashton Warner Date: Thu, 9 Jul 2026 10:40:54 +1200 Subject: [PATCH] staging: rtl8723bs: Wrap line exceeding 100 characters Wrap lines exceeding 100 characters to improve readability and to adhere to the Linux kernel coding style. This fixes LONG_LINE issues reported by checkpatch.pl. Signed-off-by: Ashton Warner Link: https://patch.msgid.link/ak7R9mUk_0hth0xm@thesun Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8723bs/core/rtw_recv.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_recv.c b/drivers/staging/rtl8723bs/core/rtw_recv.c index 6bb119a83036..68e26fb139c3 100644 --- a/drivers/staging/rtl8723bs/core/rtw_recv.c +++ b/drivers/staging/rtl8723bs/core/rtw_recv.c @@ -44,7 +44,8 @@ signed int _rtw_init_recv_priv(struct recv_priv *precvpriv, struct adapter *pada precvpriv->free_recvframe_cnt = NR_RECVFRAME; - precvpriv->pallocated_frame_buf = vzalloc(NR_RECVFRAME * sizeof(union recv_frame) + RXFRAME_ALIGN_SZ); + precvpriv->pallocated_frame_buf = vzalloc(NR_RECVFRAME * sizeof(union recv_frame) + + RXFRAME_ALIGN_SZ); if (!precvpriv->pallocated_frame_buf) { res = _FAIL;