aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAyush Tiwari <[email protected]>2024-03-21 12:27:41 +0530
committerGreg Kroah-Hartman <[email protected]>2024-03-25 19:08:25 +0100
commitb50e41c0e5e074e5f8bf153b7c71584e93ed00ba (patch)
tree6367d9f1930d8dab241d1c5c2e8991bfd8a453f0
parentf7841bc3e347773e95549c96ae6ca403b42f40f8 (diff)
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 <[email protected]> Reviewed-by: Dan Carpenter <[email protected]> Link: https://lore.kernel.org/r/ZfvaZd92bnoZ9M1m@ayush-HP-Pavilion-Gaming-Laptop-15-ec0xxx Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/rtl8712/os_intfs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/rtl8712/os_intfs.c b/drivers/staging/rtl8712/os_intfs.c
index 7554613fe7e1..1b11f8b04e13 100644
--- a/drivers/staging/rtl8712/os_intfs.c
+++ b/drivers/staging/rtl8712/os_intfs.c
@@ -221,7 +221,8 @@ struct net_device *r8712_init_netdev(void)
static u32 start_drv_threads(struct _adapter *padapter)
{
- padapter->cmd_thread = kthread_run(r8712_cmd_thread, padapter, "%s", padapter->pnetdev->name);
+ padapter->cmd_thread = kthread_run(r8712_cmd_thread, padapter, "%s",
+ padapter->pnetdev->name);
if (IS_ERR(padapter->cmd_thread))
return _FAIL;
return _SUCCESS;