]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
Staging: rtl8723bs: fix spaces in odm_HWConfig.h
authorMarco Cesati <marcocesati@gmail.com>
Mon, 15 Mar 2021 17:05:49 +0000 (18:05 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 16 Mar 2021 11:23:16 +0000 (12:23 +0100)
This commit fixes the following checkpatch.pl errors:

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #125: FILE: ./hal/odm_HWConfig.h:125:
    + struct DM_ODM_T * pDM_Odm,

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #131: FILE: ./hal/odm_HWConfig.h:131:
    +enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct DM_ODM_T * pDM_Odm);

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #134: FILE: ./hal/odm_HWConfig.h:134:
    + struct DM_ODM_T * pDM_Odm,

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #140: FILE: ./hal/odm_HWConfig.h:140:
    + struct DM_ODM_T * pDM_Odm, enum ODM_BB_Config_Type ConfigType

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #144: FILE: ./hal/odm_HWConfig.h:144:
    + struct DM_ODM_T * pDM_Odm,

    ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
    #150: FILE: ./hal/odm_HWConfig.h:150:
    +s32 odm_SignalScaleMapping(struct DM_ODM_T * pDM_Odm, s32 CurrSig);

Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Marco Cesati <marcocesati@gmail.com>
Link: https://lore.kernel.org/r/20210315170618.2566-29-marcocesati@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/odm_HWConfig.h

index d4d53839a3f9c2b92e8f3de5dfaf10e70bc4f05d..deec2e71bd49a2d6ad059fc7a4e1c8686f3cc739 100644 (file)
@@ -122,31 +122,31 @@ struct PHY_STATUS_RPT_8812_T {
 
 
 void ODM_PhyStatusQuery(
-       struct DM_ODM_T * pDM_Odm,
+       struct DM_ODM_T *pDM_Odm,
        struct odm_phy_info *pPhyInfo,
        u8 *pPhyStatus,
        struct odm_packet_info *pPktinfo
 );
 
-enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct DM_ODM_T * pDM_Odm);
+enum HAL_STATUS ODM_ConfigRFWithTxPwrTrackHeaderFile(struct DM_ODM_T *pDM_Odm);
 
 enum HAL_STATUS ODM_ConfigRFWithHeaderFile(
-       struct DM_ODM_T * pDM_Odm,
+       struct DM_ODM_T *pDM_Odm,
        enum ODM_RF_Config_Type ConfigType,
        enum ODM_RF_RADIO_PATH_E eRFPath
 );
 
 enum HAL_STATUS ODM_ConfigBBWithHeaderFile(
-       struct DM_ODM_T * pDM_Odm, enum ODM_BB_Config_Type ConfigType
+       struct DM_ODM_T *pDM_Odm, enum ODM_BB_Config_Type ConfigType
 );
 
 enum HAL_STATUS ODM_ConfigFWWithHeaderFile(
-       struct DM_ODM_T * pDM_Odm,
+       struct DM_ODM_T *pDM_Odm,
        enum ODM_FW_Config_Type ConfigType,
        u8 *pFirmware,
        u32 *pSize
 );
 
-s32 odm_SignalScaleMapping(struct DM_ODM_T * pDM_Odm, s32 CurrSig);
+s32 odm_SignalScaleMapping(struct DM_ODM_T *pDM_Odm, s32 CurrSig);
 
 #endif