mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 01:55:51 +02:00
staging: rtl8723bs: rename global function Efuse_CalculateWordCnts
Renames the function Efuse_CalculateWordCnts to rtw_efuse_calculate_word_counts in order to conform to linux code style. Discovered with checkpatch.pl tool. Signed-off-by: Linus Probert <linus.probert@gmail.com> Reviewed-by: Ethan Tidmore <ethantidmore06@gmail.com> Link: https://patch.msgid.link/20260403223327.1831215-2-linus.probert@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b4c71a9978
commit
6801cdb0f7
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
/* 11/16/2008 MH Add description. Get current efuse area enabled word!!. */
|
||||
u8
|
||||
Efuse_CalculateWordCnts(u8 word_en)
|
||||
rtw_efuse_calculate_word_counts(u8 word_en)
|
||||
{
|
||||
u8 word_cnts = 0;
|
||||
|
||||
|
|
|
|||
|
|
@ -687,7 +687,7 @@ static void hal_ReadEFuse_WiFi(
|
|||
addr += 2;
|
||||
}
|
||||
} else {
|
||||
eFuse_Addr += Efuse_CalculateWordCnts(wden)*2;
|
||||
eFuse_Addr += rtw_efuse_calculate_word_counts(wden)*2;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -779,7 +779,7 @@ static void hal_ReadEFuse_BT(
|
|||
addr += 2;
|
||||
}
|
||||
} else {
|
||||
eFuse_Addr += Efuse_CalculateWordCnts(wden)*2;
|
||||
eFuse_Addr += rtw_efuse_calculate_word_counts(wden)*2;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ struct efuse_hal {
|
|||
u8 fakeBTEfuseModifiedMap[EFUSE_BT_MAX_MAP_LEN];
|
||||
};
|
||||
|
||||
u8 Efuse_CalculateWordCnts(u8 word_en);
|
||||
u8 rtw_efuse_calculate_word_counts(u8 word_en);
|
||||
u8 efuse_OneByteRead(struct adapter *padapter, u16 addr, u8 *data);
|
||||
|
||||
u8 EFUSE_Read1Byte(struct adapter *padapter, u16 Address);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user