[v2] staging: rtl8192e: Rename function IsHTHalfNmodeAPs to is_ht_half_nmode_aps
Commit Message
Rename function IsHTHalfNmodeAPs to is_ht_half_nmode_aps in order to
fix checkpatch warning: Avoid CamelCase
Signed-off-by: Tree Davies <tdavies@darkphysics.net>
v2: Rename is_ht_half_nmode_a_ps -> is_ht_half_nmode_aps
---
drivers/staging/rtl8192e/rtl819x_HTProc.c | 2 +-
drivers/staging/rtl8192e/rtllib.h | 2 +-
drivers/staging/rtl8192e/rtllib_softmac.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Comments
On Mon, Jun 26, 2023 at 11:06:42PM -0700, Tree Davies wrote:
> Rename function IsHTHalfNmodeAPs to is_ht_half_nmode_aps in order to
> fix checkpatch warning: Avoid CamelCase
>
> Signed-off-by: Tree Davies <tdavies@darkphysics.net>
> v2: Rename is_ht_half_nmode_a_ps -> is_ht_half_nmode_aps
> ---
As per the documentation, the "v2..." stuff goes below the --- line so
it will not end up in the change log text.
And you don't say why you changed the name here, why?
thanks,
greg k-h
On Mon, Jul 03, 2023 at 03:22:00PM +0200, Greg KH wrote:
> On Mon, Jun 26, 2023 at 11:06:42PM -0700, Tree Davies wrote:
> > Rename function IsHTHalfNmodeAPs to is_ht_half_nmode_aps in order to
> > fix checkpatch warning: Avoid CamelCase
> >
> > Signed-off-by: Tree Davies <tdavies@darkphysics.net>
> > v2: Rename is_ht_half_nmode_a_ps -> is_ht_half_nmode_aps
> > ---
>
> As per the documentation, the "v2..." stuff goes below the --- line so
> it will not end up in the change log text.
>
> And you don't say why you changed the name here, why?
Ah, you did a v3 with this fixed up, nevermind...
@@ -139,7 +139,7 @@ u16 TxCountToDataRate(struct rtllib_device *ieee, u8 nDataRate)
return MCS_DATA_RATE[is40MHz][isShortGI][nDataRate & 0xf];
}
-bool IsHTHalfNmodeAPs(struct rtllib_device *ieee)
+bool is_ht_half_nmode_aps(struct rtllib_device *ieee)
{
bool retValue = false;
struct rtllib_network *net = &ieee->current_network;
@@ -2003,7 +2003,7 @@ extern u8 MCS_FILTER_ALL[];
extern u16 MCS_DATA_RATE[2][2][77];
u8 HTCCheck(struct rtllib_device *ieee, u8 *pFrame);
void HTResetIOTSetting(struct rt_hi_throughput *ht_info);
-bool IsHTHalfNmodeAPs(struct rtllib_device *ieee);
+bool is_ht_half_nmode_aps(struct rtllib_device *ieee);
u16 TxCountToDataRate(struct rtllib_device *ieee, u8 nDataRate);
int rtllib_rx_ADDBAReq(struct rtllib_device *ieee, struct sk_buff *skb);
int rtllib_rx_ADDBARsp(struct rtllib_device *ieee, struct sk_buff *skb);
@@ -2224,7 +2224,7 @@ static void rtllib_rx_auth_resp(struct rtllib_device *ieee, struct sk_buff *skb)
ieee->softmac_stats.rx_auth_rs_ok++;
if (!(ieee->ht_info->iot_action & HT_IOT_ACT_PURE_N_MODE)) {
if (!ieee->GetNmodeSupportBySecCfg(ieee->dev)) {
- if (IsHTHalfNmodeAPs(ieee)) {
+ if (is_ht_half_nmode_aps(ieee)) {
bSupportNmode = true;
bHalfSupportNmode = true;
} else {