Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: rtl8712: Fix line length exceeding 100 columns

Split the argument list of the kthread_run function call across two
lines to address the checkpatch warning "line length exceeds 100
columns".

Signed-off-by: Ayush Tiwari <ayushtiw0110@gmail.com>
Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/ZfvaZd92bnoZ9M1m@ayush-HP-Pavilion-Gaming-Laptop-15-ec0xxx
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Ayush Tiwari and committed by
Greg Kroah-Hartman
b50e41c0 f7841bc3

+2 -1
+2 -1
drivers/staging/rtl8712/os_intfs.c
··· 221 221 222 222 static u32 start_drv_threads(struct _adapter *padapter) 223 223 { 224 - padapter->cmd_thread = kthread_run(r8712_cmd_thread, padapter, "%s", padapter->pnetdev->name); 224 + padapter->cmd_thread = kthread_run(r8712_cmd_thread, padapter, "%s", 225 + padapter->pnetdev->name); 225 226 if (IS_ERR(padapter->cmd_thread)) 226 227 return _FAIL; 227 228 return _SUCCESS;