[PATCH] staging: rtl8723bs: fix cmdThread CamelCase style warning

From: Freeman Yuan

Date: Sun Jul 05 2026 - 15:50:49 EST


Rename the CamelCase variable structure member cmdThread to cmd_thread
inside drv_types.h and rtw_cmd.c to align with standard Linux kernel
coding style guidelines.

Signed-off-by: Freeman Yuan <freemanyuan15@xxxxxxxxx>
---
--- a/drivers/staging/rtl8723bs/include/drv_types.h 2026-07-05 12:48:26.445848305 -0700
+++ b/drivers/staging/rtl8723bs/include/drv_types.h 2026-07-05 12:43:05.869520819 -0700
@@ -307,7 +307,7 @@
u8 init_adpt_in_progress;
u8 bHaltInProgress;

- void *cmdThread;
+ void *cmd_thread;
void *evtThread;
void *xmitThread;
void *recvThread;
--- a/drivers/staging/rtl8723bs/core/rtw_cmd.c 2026-07-05 12:48:26.463848308 -0700
+++ b/drivers/staging/rtl8723bs/core/rtw_cmd.c 2026-07-05 12:43:05.867520813 -0700
@@ -156,14 +156,14 @@
};

/*
- * Caller and the rtw_cmdThread can protect cmd_q by spin_lock.
+ * Caller and the rtw_cmd_thread can protect cmd_q by spin_lock.
* No irqsave is necessary.
*/

int rtw_init_cmd_priv(struct cmd_priv *pcmdpriv)
{
init_completion(&pcmdpriv->cmd_queue_comp);
- init_completion(&pcmdpriv->terminate_cmdThread_comp);
+ init_completion(&pcmdpriv->terminate_cmd_thread_comp);

INIT_LIST_HEAD(&pcmdpriv->cmd_queue.queue);
spin_lock_init(&pcmdpriv->cmd_queue.lock);
@@ -361,18 +361,18 @@
kfree(pcmd);
}

-void rtw_stop_cmdThread(struct adapter *adapter)
+void rtw_stop_cmd_thread(struct adapter *adapter)
{
- if (adapter->cmdThread &&
+ if (adapter->cmd_thread &&
atomic_read(&adapter->cmdpriv.cmdthd_running) &&
adapter->cmdpriv.stop_req == 0) {
adapter->cmdpriv.stop_req = 1;
complete(&adapter->cmdpriv.cmd_queue_comp);
- wait_for_completion(&adapter->cmdpriv.terminate_cmdThread_comp);
+ wait_for_completion(&adapter->cmdpriv.terminate_cmd_thread_comp);
}
}

-int rtw_cmdThread(void *context)
+int rtw_cmd_thread(void *context)
{
u8 ret;
struct cmd_obj *pcmd;
@@ -389,7 +389,7 @@

pcmdpriv->stop_req = 0;
atomic_set(&pcmdpriv->cmdthd_running, true);
- complete(&pcmdpriv->terminate_cmdThread_comp);
+ complete(&pcmdpriv->terminate_cmd_thread_comp);

while (1) {
if (wait_for_completion_interruptible(&pcmdpriv->cmd_queue_comp)) {
@@ -511,7 +511,7 @@
rtw_free_cmd_obj(pcmd);
} while (1);

- complete(&pcmdpriv->terminate_cmdThread_comp);
+ complete(&pcmdpriv->terminate_cmd_thread_comp);
atomic_set(&pcmdpriv->cmdthd_running, false);

return 0;
@@ -1733,7 +1733,7 @@
rtw_hal_c2h_handler(adapter, c2h_evt);
kfree(c2h_evt);
} else {
- /* Enqueue into cmdThread for others */
+ /* Enqueue into cmd_thread for others */
rtw_c2h_wk_cmd(adapter, c2h_evt);
}
}