Messages in this thread Patch in this message |  | | From | Deepak Mishra <> | Subject | [PATCH 4/8] staging: rtl8712: Fixed CamelCase in struct _adapter from drv_types.h | Date | Sun, 2 Jun 2019 00:13:38 +0530 |
| |
This patch fixes CamelCase evtThread in struct _adapter as reported by checkpatch.pl CHECK: Avoid CamelCase: <evtThread>
Signed-off-by: Deepak Mishra <linux.dkm@gmail.com> --- drivers/staging/rtl8712/drv_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8712/drv_types.h b/drivers/staging/rtl8712/drv_types.h index c6faafb13bdf..5360f049088a 100644 --- a/drivers/staging/rtl8712/drv_types.h +++ b/drivers/staging/rtl8712/drv_types.h @@ -153,7 +153,7 @@ struct _adapter { u8 eeprom_address_size; u8 hw_init_completed; struct task_struct *cmd_thread; - pid_t evtThread; + pid_t evt_thread; struct task_struct *xmitThread; pid_t recvThread; uint (*dvobj_init)(struct _adapter *adapter); -- 2.19.1
|  |