The ODM_TARGET_CHNL_NUM_2G_5G define is only used in one place, so move it to the .c file it is used in instead of being in a .h file. Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/staging/r8188eu/hal/HalPhyRf.c | 2 ++ drivers/staging/r8188eu/include/HalPhyRf.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/r8188eu/hal/HalPhyRf.c b/drivers/staging/r8188eu/hal/HalPhyRf.c index 1805fdfbad48..e5a58ee156b7 100644 --- a/drivers/staging/r8188eu/hal/HalPhyRf.c +++ b/drivers/staging/r8188eu/hal/HalPhyRf.c @@ -7,6 +7,8 @@ /* 3 IQ Calibration */ /* 3============================================================ */ +#define ODM_TARGET_CHNL_NUM_2G_5G 59 + u8 ODM_GetRightChnlPlaceforIQK(u8 chnl) { u8 channel_all[ODM_TARGET_CHNL_NUM_2G_5G] = { diff --git a/drivers/staging/r8188eu/include/HalPhyRf.h b/drivers/staging/r8188eu/include/HalPhyRf.h index 54af312509a0..ba877eb7e801 100644 --- a/drivers/staging/r8188eu/include/HalPhyRf.h +++ b/drivers/staging/r8188eu/include/HalPhyRf.h @@ -4,8 +4,6 @@ #ifndef __HAL_PHY_RF_H__ #define __HAL_PHY_RF_H__ -#define ODM_TARGET_CHNL_NUM_2G_5G 59 - u8 ODM_GetRightChnlPlaceforIQK(u8 chnl); #endif /* #ifndef __HAL_PHY_RF_H__ */ -- 2.32.0