mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 23:20:32 -04:00
Staging: rtl8723bs: fix spaces in HalHWImg8723B_RF.c
This commit fixes the following checkpatch.pl errors:
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#12: FILE: ./hal/HalHWImg8723B_RF.c:12:
+ struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#124: FILE: ./hal/HalHWImg8723B_RF.c:124:
+ struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#262: FILE: ./hal/HalHWImg8723B_RF.c:262:
+void ODM_ReadAndConfig_MP_8723B_RadioA(struct DM_ODM_T * pDM_Odm)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#423: FILE: ./hal/HalHWImg8723B_RF.c:423:
+void ODM_ReadAndConfig_MP_8723B_TxPowerTrack_SDIO(struct DM_ODM_T * pDM_Odm)
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#425: FILE: ./hal/HalHWImg8723B_RF.c:425:
+ struct ODM_RF_CAL_T * pRFCalibrateInfo = &(pDM_Odm->RFCalibrateInfo);
ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#758: FILE: ./hal/HalHWImg8723B_RF.c:758:
+void ODM_ReadAndConfig_MP_8723B_TXPWR_LMT(struct DM_ODM_T * pDM_Odm)
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210315170618.2566-12-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
71940c7627
commit
2389266236
@@ -9,7 +9,7 @@
|
||||
#include "odm_precomp.h"
|
||||
|
||||
static bool CheckPositive(
|
||||
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
|
||||
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
|
||||
)
|
||||
{
|
||||
u8 _BoardType =
|
||||
@@ -121,7 +121,7 @@ static bool CheckPositive(
|
||||
}
|
||||
|
||||
static bool CheckNegative(
|
||||
struct DM_ODM_T * pDM_Odm, const u32 Condition1, const u32 Condition2
|
||||
struct DM_ODM_T *pDM_Odm, const u32 Condition1, const u32 Condition2
|
||||
)
|
||||
{
|
||||
return true;
|
||||
@@ -259,7 +259,7 @@ static u32 Array_MP_8723B_RadioA[] = {
|
||||
|
||||
};
|
||||
|
||||
void ODM_ReadAndConfig_MP_8723B_RadioA(struct DM_ODM_T * pDM_Odm)
|
||||
void ODM_ReadAndConfig_MP_8723B_RadioA(struct DM_ODM_T *pDM_Odm)
|
||||
{
|
||||
u32 i = 0;
|
||||
u32 ArrayLen = ARRAY_SIZE(Array_MP_8723B_RadioA);
|
||||
@@ -420,9 +420,9 @@ static u8 gDeltaSwingTableIdx_MP_2GCCKA_P_TxPowerTrack_SDIO_8723B[] = {
|
||||
8, 8, 9, 9, 9, 10, 10, 11, 11, 12, 12, 13, 14, 15
|
||||
};
|
||||
|
||||
void ODM_ReadAndConfig_MP_8723B_TxPowerTrack_SDIO(struct DM_ODM_T * pDM_Odm)
|
||||
void ODM_ReadAndConfig_MP_8723B_TxPowerTrack_SDIO(struct DM_ODM_T *pDM_Odm)
|
||||
{
|
||||
struct ODM_RF_CAL_T * pRFCalibrateInfo = &(pDM_Odm->RFCalibrateInfo);
|
||||
struct ODM_RF_CAL_T *pRFCalibrateInfo = &pDM_Odm->RFCalibrateInfo;
|
||||
|
||||
ODM_RT_TRACE(
|
||||
pDM_Odm,
|
||||
@@ -755,7 +755,7 @@ static u8 *Array_MP_8723B_TXPWR_LMT[] = {
|
||||
"MKK", "2.4G", "40M", "HT", "2T", "14", "63"
|
||||
};
|
||||
|
||||
void ODM_ReadAndConfig_MP_8723B_TXPWR_LMT(struct DM_ODM_T * pDM_Odm)
|
||||
void ODM_ReadAndConfig_MP_8723B_TXPWR_LMT(struct DM_ODM_T *pDM_Odm)
|
||||
{
|
||||
u32 i = 0;
|
||||
u8 **Array = Array_MP_8723B_TXPWR_LMT;
|
||||
|
||||
Reference in New Issue
Block a user