Staging: rtl8723bs: fix in odm_DynamicBBPowerSaving.h

This commit converts names of structs / enums
in hal/odm_DynamicBBPowerSaving.h from ALL_CAPS format to lowercase

Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210317222130.29528-42-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Marco Cesati
2021-03-17 23:21:28 +01:00
committed by Greg Kroah-Hartman
parent f8010da655
commit 4970f56ced
3 changed files with 4 additions and 4 deletions

View File

@@ -1111,7 +1111,7 @@ struct dm_odm_t { /* DM_Out_Source_Dynamic_Mechanism_Structure */
/* */
struct fat_t DM_FatTable;
struct dig_t DM_DigTable;
struct PS_T DM_PSTable;
struct ps_t DM_PSTable;
struct dynamic_primary_CCA DM_PriCCA;
struct rxhp_t dM_RXHP_Table;
struct ra_t DM_RA_Table;

View File

@@ -10,7 +10,7 @@
void odm_DynamicBBPowerSavingInit(void *pDM_VOID)
{
struct dm_odm_t *pDM_Odm = (struct dm_odm_t *)pDM_VOID;
struct PS_T *pDM_PSTable = &pDM_Odm->DM_PSTable;
struct ps_t *pDM_PSTable = &pDM_Odm->DM_PSTable;
pDM_PSTable->PreCCAState = CCA_MAX;
pDM_PSTable->CurCCAState = CCA_MAX;
@@ -23,7 +23,7 @@ void odm_DynamicBBPowerSavingInit(void *pDM_VOID)
void ODM_RF_Saving(void *pDM_VOID, u8 bForceInNormal)
{
struct dm_odm_t *pDM_Odm = (struct dm_odm_t *)pDM_VOID;
struct PS_T *pDM_PSTable = &pDM_Odm->DM_PSTable;
struct ps_t *pDM_PSTable = &pDM_Odm->DM_PSTable;
u8 Rssi_Up_bound = 30;
u8 Rssi_Low_bound = 25;

View File

@@ -8,7 +8,7 @@
#ifndef __ODMDYNAMICBBPOWERSAVING_H__
#define __ODMDYNAMICBBPOWERSAVING_H__
struct PS_T { /* _Dynamic_Power_Saving_ */
struct ps_t { /* _Dynamic_Power_Saving_ */
u8 PreCCAState;
u8 CurCCAState;