staging: rtl8723bs: expand multiple assignment into separate statements

Split multiple assignments in a single line into separate statements in
osdep_service.c to follow kernel coding style.
No functional change.

Signed-off-by: Nayana Mariyappa <nayana.mariyappa@gmail.com>
Link: https://patch.msgid.link/20260116120511.48272-5-nayana.mariyappa@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nayana Mariyappa 2026-01-16 12:05:11 +00:00 committed by Greg Kroah-Hartman
parent 48f3cb74a1
commit 5080a15d75

View File

@ -223,7 +223,8 @@ struct rtw_cbuf *rtw_cbuf_alloc(u32 size)
cbuf = rtw_malloc(struct_size(cbuf, bufs, size));
if (cbuf) {
cbuf->write = cbuf->read = 0;
cbuf->write = 0;
cbuf->read = 0;
cbuf->size = size;
}