[PATCH] staging: rtl8723bs: Wrap line exceeding 100 characters

From: Ashton Warner

Date: Wed Jul 08 2026 - 18:41:43 EST


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 <drflamemontgomery@xxxxxxxxx>
---
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 86c5e2c4e7dd..519953c33034 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;
--
2.55.0