* [PATCH v6 0/7] staging: rtl8723bs: rename/remove functions
@ 2026-04-03 22:32 Linus Probert
2026-04-03 22:35 ` Linus Probert
0 siblings, 1 reply; 4+ messages in thread
From: Linus Probert @ 2026-04-03 22:32 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel, Linus Probert
Renames global functions in rtw_efuse.h (1-5)
Removes a space before tab in efuse.h (6)
Removes two unsued functions in efuse.h (7)
Changes in v6:
- Fixed typo in 3
Changes in v5:
- Reworded subjects in 4 and 6
Changes in v4:
- Distinct subjects on renaming patches
Changes in v3:
- Furher split renaming patch into separate patches
Changes in v2:
- Split patch into series
Linus Probert (7):
staging: rtl8723bs: rename global function Efuse_CalculateWordCnts
staging: rtl8723bs: efuse_OneByteRead() -> rtw_efuse_one_byte_read()
staging: rtl8723bs: rename EFUSE_Read1Byte() to
rtw_efuse_read_1_byte()
staging: rtl8723bs: EFUSE_ShadowMapUpdate ->
rtw_efuse_shadow_map_update
staging: rtl8723bs: rename EFUSE_ShadowRead() to
rtw_efuse_shadow_read()
staging: rtl8723bs: remove two unused function prototypes
staging: rtl8723bs: remove space before tab
drivers/staging/rtl8723bs/core/rtw_efuse.c | 22 ++++++-------
.../staging/rtl8723bs/hal/rtl8723b_hal_init.c | 33 +++++++++++--------
drivers/staging/rtl8723bs/hal/sdio_halinit.c | 2 +-
drivers/staging/rtl8723bs/include/rtw_efuse.h | 14 ++++----
4 files changed, 37 insertions(+), 34 deletions(-)
--
2.53.0
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH v6 0/7] staging: rtl8723bs: rename/remove functions
@ 2026-04-03 22:33 Linus Probert
2026-04-04 3:27 ` Ethan Tidmore
0 siblings, 1 reply; 4+ messages in thread
From: Linus Probert @ 2026-04-03 22:33 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel, Linus Probert
Renames global functions in rtw_efuse.h (1-5)
Removes a space before tab in efuse.h (6)
Removes two unsued functions in efuse.h (7)
Changes in v6:
- Fixed typo in 3
Changes in v5:
- Reworded subjects in 4 and 6
Changes in v4:
- Distinct subjects on renaming patches
Changes in v3:
- Furher split renaming patch into separate patches
Changes in v2:
- Split patch into series
Linus Probert (7):
staging: rtl8723bs: rename global function Efuse_CalculateWordCnts
staging: rtl8723bs: efuse_OneByteRead() -> rtw_efuse_one_byte_read()
staging: rtl8723bs: rename EFUSE_Read1Byte() to
rtw_efuse_read_1_byte()
staging: rtl8723bs: EFUSE_ShadowMapUpdate ->
rtw_efuse_shadow_map_update
staging: rtl8723bs: rename EFUSE_ShadowRead() to
rtw_efuse_shadow_read()
staging: rtl8723bs: remove two unused function prototypes
staging: rtl8723bs: remove space before tab
drivers/staging/rtl8723bs/core/rtw_efuse.c | 22 ++++++-------
.../staging/rtl8723bs/hal/rtl8723b_hal_init.c | 33 +++++++++++--------
drivers/staging/rtl8723bs/hal/sdio_halinit.c | 2 +-
drivers/staging/rtl8723bs/include/rtw_efuse.h | 14 ++++----
4 files changed, 37 insertions(+), 34 deletions(-)
--
2.53.0
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v6 0/7] staging: rtl8723bs: rename/remove functions
2026-04-03 22:33 Linus Probert
@ 2026-04-04 3:27 ` Ethan Tidmore
0 siblings, 0 replies; 4+ messages in thread
From: Ethan Tidmore @ 2026-04-04 3:27 UTC (permalink / raw)
To: Linus Probert, Greg Kroah-Hartman; +Cc: linux-staging, linux-kernel
On Fri Apr 3, 2026 at 5:33 PM CDT, Linus Probert wrote:
> Renames global functions in rtw_efuse.h (1-5)
> Removes a space before tab in efuse.h (6)
> Removes two unsued functions in efuse.h (7)
>
> Changes in v6:
> - Fixed typo in 3
> Changes in v5:
> - Reworded subjects in 4 and 6
> Changes in v4:
> - Distinct subjects on renaming patches
> Changes in v3:
> - Furher split renaming patch into separate patches
> Changes in v2:
> - Split patch into series
>
> Linus Probert (7):
> staging: rtl8723bs: rename global function Efuse_CalculateWordCnts
> staging: rtl8723bs: efuse_OneByteRead() -> rtw_efuse_one_byte_read()
> staging: rtl8723bs: rename EFUSE_Read1Byte() to
> rtw_efuse_read_1_byte()
> staging: rtl8723bs: EFUSE_ShadowMapUpdate ->
> rtw_efuse_shadow_map_update
> staging: rtl8723bs: rename EFUSE_ShadowRead() to
> rtw_efuse_shadow_read()
> staging: rtl8723bs: remove two unused function prototypes
> staging: rtl8723bs: remove space before tab
>
> drivers/staging/rtl8723bs/core/rtw_efuse.c | 22 ++++++-------
> .../staging/rtl8723bs/hal/rtl8723b_hal_init.c | 33 +++++++++++--------
> drivers/staging/rtl8723bs/hal/sdio_halinit.c | 2 +-
> drivers/staging/rtl8723bs/include/rtw_efuse.h | 14 ++++----
> 4 files changed, 37 insertions(+), 34 deletions(-)
LGTM.
Reviewed-by: Ethan Tidmore <ethantidmore06@gmail.com>
Thanks,
ET
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-04-04 3:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-03 22:32 [PATCH v6 0/7] staging: rtl8723bs: rename/remove functions Linus Probert
2026-04-03 22:35 ` Linus Probert
-- strict thread matches above, loose matches on Subject: below --
2026-04-03 22:33 Linus Probert
2026-04-04 3:27 ` Ethan Tidmore
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox