This commit fixes the following checkpatch.pl errors:

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #273: FILE: ./hal/hal_com_phycfg.c:273:
    +   struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;

    ERROR:POINTER_LOCATION: "foo *              bar" should be "foo *bar"
    #798: FILE: ./hal/hal_com_phycfg.c:798:
    +   struct DM_ODM_T *               pDM_Odm = &pHalData->odmpriv;

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #1191: FILE: ./hal/hal_com_phycfg.c:1191:
    +   struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;

Signed-off-by: Marco Cesati <marcoces...@gmail.com>
---
 drivers/staging/rtl8723bs/hal/hal_com_phycfg.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c 
b/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
index 2bf4689dc08e..7405f9229117 100644
--- a/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
+++ b/drivers/staging/rtl8723bs/hal/hal_com_phycfg.c
@@ -270,7 +270,7 @@ u8 PHY_GetRateSectionIndexOfTxPowerByRate(
 )
 {
        struct hal_com_data     *pHalData = GET_HAL_DATA(padapter);
-       struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
+       struct DM_ODM_T *pDM_Odm = &pHalData->odmpriv;
        u8      index = 0;
 
        if (pDM_Odm->PhyRegPgVersion == 0) {
@@ -795,7 +795,7 @@ void PHY_StoreTxPowerByRate(
 )
 {
        struct hal_com_data     *pHalData = GET_HAL_DATA(padapter);
-       struct DM_ODM_T *               pDM_Odm = &pHalData->odmpriv;
+       struct DM_ODM_T *pDM_Odm = &pHalData->odmpriv;
 
        if (pDM_Odm->PhyRegPgVersion > 0)
                PHY_StoreTxPowerByRateNew(padapter, Band, RfPath, TxNum, 
RegAddr, BitMask, Data);
@@ -1188,7 +1188,7 @@ u8 PHY_GetTxPowerIndexBase(
 s8 PHY_GetTxPowerTrackingOffset(struct adapter *padapter, u8 RFPath, u8 Rate)
 {
        struct hal_com_data *pHalData = GET_HAL_DATA(padapter);
-       struct DM_ODM_T * pDM_Odm = &pHalData->odmpriv;
+       struct DM_ODM_T *pDM_Odm = &pHalData->odmpriv;
        s8 offset = 0;
 
        if (pDM_Odm->RFCalibrateInfo.TxPowerTrackControl  == false)
-- 
2.30.2

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to