The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH 0/2] staging: rtl8723bs: small cleanup of RTL8192C leftovers
@ 2026-08-11 14:23 Jonggeun Park
  2026-08-11 14:23 ` [PATCH 1/2] staging: rtl8723bs: fix stale file name references in comments Jonggeun Park
  2026-08-11 14:23 ` [PATCH 2/2] staging: rtl8723bs: remove dead RTL8192C function declarations Jonggeun Park
  0 siblings, 2 replies; 3+ messages in thread
From: Jonggeun Park @ 2026-08-11 14:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel, Jonggeun Park

Hi,

This is my first patch series to the kernel, and I am glad to
contribute.

The series is a step toward the TODO item "find and remove any code
for other chips that is left over" in drivers/staging/rtl8723bs/TODO:

  - Patch 1 corrects two comments whose referenced file names no
    longer match the files present in the driver.
  - Patch 2 removes two RTL8192C function declarations that have no
    definition or caller anywhere in the kernel tree.

Neither patch introduces a functional change. The driver builds
cleanly with W=1 for CONFIG_RTL8723BS=m.

Thanks,
Jonggeun

Jonggeun Park (2):
  staging: rtl8723bs: fix stale file name references in comments
  staging: rtl8723bs: remove dead RTL8192C function declarations

 drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.c   | 2 +-
 drivers/staging/rtl8723bs/include/rtl8192c_recv.h | 3 ---
 drivers/staging/rtl8723bs/include/rtl8723b_hal.h  | 2 +-
 3 files changed, 2 insertions(+), 5 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/2] staging: rtl8723bs: fix stale file name references in comments
  2026-08-11 14:23 [PATCH 0/2] staging: rtl8723bs: small cleanup of RTL8192C leftovers Jonggeun Park
@ 2026-08-11 14:23 ` Jonggeun Park
  2026-08-11 14:23 ` [PATCH 2/2] staging: rtl8723bs: remove dead RTL8192C function declarations Jonggeun Park
  1 sibling, 0 replies; 3+ messages in thread
From: Jonggeun Park @ 2026-08-11 14:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel, Jonggeun Park

Correct two comments whose referenced file names do not match the
files currently present in the driver:

  - include/rtl8723b_hal.h:  "rtl8723a_hal_init.c" -> "rtl8723b_hal_init.c"
  - hal/rtl8723b_rf6052.c:   "rtl8192c_rf6052.c"   -> "rtl8723b_rf6052.c"

No functional change.

Signed-off-by: Jonggeun Park <ndamin221@gmail.com>
---
 drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.c  | 2 +-
 drivers/staging/rtl8723bs/include/rtl8723b_hal.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.c b/drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.c
index da4cb2827..6d8f70df0 100644
--- a/drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.c
+++ b/drivers/staging/rtl8723bs/hal/rtl8723b_rf6052.c
@@ -7,7 +7,7 @@
 /******************************************************************************
  *
  *
- * Module:	rtl8192c_rf6052.c	(Source C File)
+ * Module:	rtl8723b_rf6052.c	(Source C File)
  *
  * Note:	Provide RF 6052 series relative API.
  *
diff --git a/drivers/staging/rtl8723bs/include/rtl8723b_hal.h b/drivers/staging/rtl8723bs/include/rtl8723b_hal.h
index b6006110a..6b0fcb09d 100644
--- a/drivers/staging/rtl8723bs/include/rtl8723b_hal.h
+++ b/drivers/staging/rtl8723bs/include/rtl8723b_hal.h
@@ -185,7 +185,7 @@ enum { /* tag_Package_Definition */
 #define INCLUDE_MULTI_FUNC_GPS(_Adapter) \
 	(GET_HAL_DATA(_Adapter)->MultiFunc & RT_MULTI_FUNC_GPS)
 
-/*  rtl8723a_hal_init.c */
+/*  rtl8723b_hal_init.c */
 s32 rtl8723b_FirmwareDownload(struct adapter *padapter, bool  bUsedWoWLANFw);
 void rtl8723b_FirmwareSelfReset(struct adapter *padapter);
 void rtl8723b_InitializeFirmwareVars(struct adapter *padapter);
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH 2/2] staging: rtl8723bs: remove dead RTL8192C function declarations
  2026-08-11 14:23 [PATCH 0/2] staging: rtl8723bs: small cleanup of RTL8192C leftovers Jonggeun Park
  2026-08-11 14:23 ` [PATCH 1/2] staging: rtl8723bs: fix stale file name references in comments Jonggeun Park
@ 2026-08-11 14:23 ` Jonggeun Park
  1 sibling, 0 replies; 3+ messages in thread
From: Jonggeun Park @ 2026-08-11 14:23 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel, Jonggeun Park

include/rtl8192c_recv.h declares two functions:

  rtl8192c_translate_rx_signal_stuff()
  rtl8192c_query_rx_desc_status()

Neither has a definition or any caller in the kernel tree.

Remove them as a step toward the TODO item "find and remove any code
for other chips that is left over".

No functional change.

Signed-off-by: Jonggeun Park <ndamin221@gmail.com>
---
 drivers/staging/rtl8723bs/include/rtl8192c_recv.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/staging/rtl8723bs/include/rtl8192c_recv.h b/drivers/staging/rtl8723bs/include/rtl8192c_recv.h
index 1f86654f0..b63625ab4 100644
--- a/drivers/staging/rtl8723bs/include/rtl8192c_recv.h
+++ b/drivers/staging/rtl8723bs/include/rtl8192c_recv.h
@@ -30,7 +30,4 @@ struct phy_stat {
 /*  Rx smooth factor */
 #define	Rx_Smooth_Factor (20)
 
-void rtl8192c_translate_rx_signal_stuff(union recv_frame *precvframe, struct phy_stat *pphy_status);
-void rtl8192c_query_rx_desc_status(union recv_frame *precvframe, struct recv_stat *pdesc);
-
 #endif
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-08-11 14:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-11 14:23 [PATCH 0/2] staging: rtl8723bs: small cleanup of RTL8192C leftovers Jonggeun Park
2026-08-11 14:23 ` [PATCH 1/2] staging: rtl8723bs: fix stale file name references in comments Jonggeun Park
2026-08-11 14:23 ` [PATCH 2/2] staging: rtl8723bs: remove dead RTL8192C function declarations Jonggeun Park

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox