* [PATCH] staging: rtl8723bs: rtw_efuse.h: Fix prototype whitespace
@ 2025-09-13 11:24 Akiyoshi Kurita
2025-09-14 15:09 ` Greg KH
0 siblings, 1 reply; 4+ messages in thread
From: Akiyoshi Kurita @ 2025-09-13 11:24 UTC (permalink / raw)
To: gregkh; +Cc: linux-staging, linux-kernel, Akiyoshi Kurita
Several function prototypes in rtw_efuse.h contained extra spaces
between the type and variable name of the last argument.
Remove these spaces to conform to the kernel coding style.
No functional change is intended.
Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
---
drivers/staging/rtl8723bs/include/rtw_efuse.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/staging/rtl8723bs/include/rtw_efuse.h b/drivers/staging/rtl8723bs/include/rtw_efuse.h
index 669565fa1c69..ca1b58bbf3ab 100644
--- a/drivers/staging/rtl8723bs/include/rtw_efuse.h
+++ b/drivers/staging/rtl8723bs/include/rtw_efuse.h
@@ -92,10 +92,10 @@ extern u8 fakeBTEfuseModifiedMap[];
u8 Efuse_CalculateWordCnts(u8 word_en);
void EFUSE_GetEfuseDefinition(struct adapter *padapter, u8 efuseType, u8 type, void *pOut, bool bPseudoTest);
-u8 efuse_OneByteRead(struct adapter *padapter, u16 addr, u8 *data, bool bPseudoTest);
-u8 efuse_OneByteWrite(struct adapter *padapter, u16 addr, u8 data, bool bPseudoTest);
+u8 efuse_OneByteRead(struct adapter *padapter, u16 addr, u8 *data, bool bPseudoTest);
+u8 efuse_OneByteWrite(struct adapter *padapter, u16 addr, u8 data, bool bPseudoTest);
-void Efuse_PowerSwitch(struct adapter *padapter, u8 bWrite, u8 PwrState);
+void Efuse_PowerSwitch(struct adapter *padapter, u8 bWrite, u8 PwrState);
u8 EFUSE_Read1Byte(struct adapter *padapter, u16 Address);
void EFUSE_ShadowMapUpdate(struct adapter *padapter, u8 efuseType, bool bPseudoTest);
--
2.47.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: rtl8723bs: rtw_efuse.h: Fix prototype whitespace
2025-09-13 11:24 [PATCH] staging: rtl8723bs: rtw_efuse.h: Fix prototype whitespace Akiyoshi Kurita
@ 2025-09-14 15:09 ` Greg KH
2025-09-14 15:29 ` weibu
0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2025-09-14 15:09 UTC (permalink / raw)
To: Akiyoshi Kurita; +Cc: linux-staging, linux-kernel
On Sat, Sep 13, 2025 at 08:24:58PM +0900, Akiyoshi Kurita wrote:
> Several function prototypes in rtw_efuse.h contained extra spaces
> between the type and variable name of the last argument.
>
> Remove these spaces to conform to the kernel coding style.
> No functional change is intended.
>
> Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
> ---
> drivers/staging/rtl8723bs/include/rtw_efuse.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
This does not apply to my current tree, what did you make it against?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: rtl8723bs: rtw_efuse.h: Fix prototype whitespace
2025-09-14 15:09 ` Greg KH
@ 2025-09-14 15:29 ` weibu
2025-09-14 15:48 ` weibu
0 siblings, 1 reply; 4+ messages in thread
From: weibu @ 2025-09-14 15:29 UTC (permalink / raw)
To: Greg KH; +Cc: linux-staging, linux-kernel
Hi Greg,
Thanks for the heads-up. That patch was generated against linux-next
(next-2025-09-12). I’ll rebase it onto your staging.git
`staging-testing`
branch and resend it as v2.
Thanks,
Akiyoshi
2025-09-15 00:09 に Greg KH さんは書きました:
> On Sat, Sep 13, 2025 at 08:24:58PM +0900, Akiyoshi Kurita wrote:
>> Several function prototypes in rtw_efuse.h contained extra spaces
>> between the type and variable name of the last argument.
>>
>> Remove these spaces to conform to the kernel coding style.
>> No functional change is intended.
>>
>> Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
>> ---
>> drivers/staging/rtl8723bs/include/rtw_efuse.h | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> This does not apply to my current tree, what did you make it against?
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] staging: rtl8723bs: rtw_efuse.h: Fix prototype whitespace
2025-09-14 15:29 ` weibu
@ 2025-09-14 15:48 ` weibu
0 siblings, 0 replies; 4+ messages in thread
From: weibu @ 2025-09-14 15:48 UTC (permalink / raw)
To: Greg KH; +Cc: linux-staging, linux-kernel
Hi Greg,
Quick follow-up: after rebasing onto your staging.git `staging-testing`,
the change turned out to be already present and there’s no delta left.
Please ignore this patch; I won’t resend v2.
Thanks,
Akiyoshi
2025-09-15 00:29 に weibu@redadmin.org さんは書きました:
> Hi Greg,
>
> Thanks for the heads-up. That patch was generated against linux-next
> (next-2025-09-12). I’ll rebase it onto your staging.git
> `staging-testing`
> branch and resend it as v2.
>
> Thanks,
> Akiyoshi
>
> 2025-09-15 00:09 に Greg KH さんは書きました:
>> On Sat, Sep 13, 2025 at 08:24:58PM +0900, Akiyoshi Kurita wrote:
>>> Several function prototypes in rtw_efuse.h contained extra spaces
>>> between the type and variable name of the last argument.
>>>
>>> Remove these spaces to conform to the kernel coding style.
>>> No functional change is intended.
>>>
>>> Signed-off-by: Akiyoshi Kurita <weibu@redadmin.org>
>>> ---
>>> drivers/staging/rtl8723bs/include/rtw_efuse.h | 6 +++---
>>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> This does not apply to my current tree, what did you make it against?
>>
>> thanks,
>>
>> greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-09-14 15:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-13 11:24 [PATCH] staging: rtl8723bs: rtw_efuse.h: Fix prototype whitespace Akiyoshi Kurita
2025-09-14 15:09 ` Greg KH
2025-09-14 15:29 ` weibu
2025-09-14 15:48 ` weibu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).