mirror of
https://github.com/torvalds/linux.git
synced 2026-07-31 03:27:03 +02:00
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:
parent
48f3cb74a1
commit
5080a15d75
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user