From: "Ethan Tidmore" <ethantidmore06@gmail.com>
To: "Linus Probert" <linus.probert@gmail.com>,
"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>
Cc: <linux-staging@lists.linux.dev>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v5 3/7] staging: rtl8723bs: rename EFUSE_Read1Byte() to rtw_efuse_read_1_byte()
Date: Fri, 03 Apr 2026 16:39:16 -0500 [thread overview]
Message-ID: <DHJUFTYOW0C9.1KG9RVHIZID46@gmail.com> (raw)
In-Reply-To: <20260402054215.271981-4-linus.probert@gmail.com>
On Thu Apr 2, 2026 at 12:42 AM CDT, Linus Probert wrote:
> Renames EFUSE_Read1Byte to rtw_efuse_read_1_byte in order to conform to
> kernel code styl.
I missed that you misspelt style in my last review. Sorry about that.
Also, its generally wanted that you include the change logs in the
actual patches themselves.
Thanks,
ET
>
> Discovered using checkpatch.pl tool.
>
> Signed-off-by: Linus Probert <linus.probert@gmail.com>
> ---
> v5: No change
>
> drivers/staging/rtl8723bs/core/rtw_efuse.c | 6 +++---
> drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c | 3 ++-
> drivers/staging/rtl8723bs/include/rtw_efuse.h | 2 +-
> 3 files changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/staging/rtl8723bs/core/rtw_efuse.c b/drivers/staging/rtl8723bs/core/rtw_efuse.c
> index a7b120cc70a3..d6212b3b0b1d 100644
> --- a/drivers/staging/rtl8723bs/core/rtw_efuse.c
> +++ b/drivers/staging/rtl8723bs/core/rtw_efuse.c
> @@ -26,7 +26,7 @@ rtw_efuse_calculate_word_counts(u8 word_en)
> }
>
> /*-----------------------------------------------------------------------------
> - * Function: EFUSE_Read1Byte
> + * Function: rtw_efuse_read_1_byte
> *
> * Overview: Copy from WMAC fot EFUSE read 1 byte.
> *
> @@ -42,7 +42,7 @@ rtw_efuse_calculate_word_counts(u8 word_en)
> *
> */
> u8
> -EFUSE_Read1Byte(
> +rtw_efuse_read_1_byte(
> struct adapter *Adapter,
> u16 Address)
> {
> @@ -79,7 +79,7 @@ u16 Address)
> } else
> return 0xFF;
>
> -} /* EFUSE_Read1Byte */
> +} /* rtw_efuse_read_1_byte */
>
> /* 11/16/2008 MH Read one byte from real Efuse. */
> u8
> diff --git a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
> index 355167883f08..941c2ebef9e2 100644
> --- a/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
> +++ b/drivers/staging/rtl8723bs/hal/rtl8723b_hal_init.c
> @@ -1559,7 +1559,8 @@ void Hal_ReadRFGainOffset(
>
> if (!AutoloadFail) {
> Adapter->eeprompriv.EEPROMRFGainOffset = PROMContent[EEPROM_RF_GAIN_OFFSET];
> - Adapter->eeprompriv.EEPROMRFGainVal = EFUSE_Read1Byte(Adapter, EEPROM_RF_GAIN_VAL);
> + Adapter->eeprompriv.EEPROMRFGainVal = rtw_efuse_read_1_byte(Adapter,
> + EEPROM_RF_GAIN_VAL);
> } else {
> Adapter->eeprompriv.EEPROMRFGainOffset = 0;
> Adapter->eeprompriv.EEPROMRFGainVal = 0xFF;
> diff --git a/drivers/staging/rtl8723bs/include/rtw_efuse.h b/drivers/staging/rtl8723bs/include/rtw_efuse.h
> index b8cd9e694f56..7b78fd5e583b 100644
> --- a/drivers/staging/rtl8723bs/include/rtw_efuse.h
> +++ b/drivers/staging/rtl8723bs/include/rtw_efuse.h
> @@ -71,7 +71,7 @@ struct efuse_hal {
> u8 rtw_efuse_calculate_word_counts(u8 word_en);
> u8 rtw_efuse_one_byte_read(struct adapter *padapter, u16 addr, u8 *data);
>
> -u8 EFUSE_Read1Byte(struct adapter *padapter, u16 Address);
> +u8 rtw_efuse_read_1_byte(struct adapter *padapter, u16 Address);
> void EFUSE_ShadowMapUpdate(struct adapter *padapter, u8 efuseType);
> void EFUSE_ShadowRead(struct adapter *padapter, u8 Type, u16 Offset, u32 *Value);
> void Rtw_Hal_ReadMACAddrFromFile(struct adapter *padapter);
next prev parent reply other threads:[~2026-04-03 21:39 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-02 5:42 [PATCH v5 0/7] staging: rtl8723bs: rename/remove functions Linus Probert
2026-04-02 5:42 ` [PATCH v5 1/7] staging: rtl8723bs: rename global function Efuse_CalculateWordCnts Linus Probert
2026-04-02 5:42 ` [PATCH v5 2/7] staging: rtl8723bs: efuse_OneByteRead() -> rtw_efuse_one_byte_read() Linus Probert
2026-04-02 5:42 ` [PATCH v5 3/7] staging: rtl8723bs: rename EFUSE_Read1Byte() to rtw_efuse_read_1_byte() Linus Probert
2026-04-03 21:39 ` Ethan Tidmore [this message]
2026-04-03 22:09 ` Linus Probert
2026-04-04 1:17 ` Ethan Tidmore
2026-04-02 5:42 ` [PATCH v5 4/7] staging: rtl8723bs: EFUSE_ShadowMapUpdate -> rtw_efuse_shadow_map_update Linus Probert
2026-04-02 5:42 ` [PATCH v5 5/7] staging: rtl8723bs: rename EFUSE_ShadowRead() to rtw_efuse_shadow_read() Linus Probert
2026-04-02 5:42 ` [PATCH v5 6/7] staging: rtl8723bs: remove two unused function prototypes Linus Probert
2026-04-02 5:42 ` [PATCH v5 7/7] staging: rtl8723bs: remove space before tab Linus Probert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=DHJUFTYOW0C9.1KG9RVHIZID46@gmail.com \
--to=ethantidmore06@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=linus.probert@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox