]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
staging: rtl8723bs: remove space after type cast
authorJinemon Tama <osjin83@gmail.com>
Fri, 10 Apr 2026 01:42:12 +0000 (10:42 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Apr 2026 11:01:55 +0000 (05:01 -0600)
Remove the unnecessary space between a type cast and the variable as
reported by checkpatch.pl. This improves code consistency and conforms
to the Linux kernel coding style.

Signed-off-by: Jinemon Tama <osjin83@gmail.com>
Reviewed-by: Luka Gejak <luka.gejak@linux.dev>
Link: https://patch.msgid.link/20260410014214.10684-3-osjin83@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/hal/rtl8723b_phycfg.c

index b3dfc2320b688f46bef54b5fe6ff0349da720dff..51e9f06b2c63d8837af2f864c4c1d44f1474ec63 100644 (file)
@@ -531,7 +531,7 @@ u8 PHY_GetTxPowerIndex(
        struct hal_com_data *pHalData = GET_HAL_DATA(padapter);
        s8 txPower = 0, powerDiffByRate = 0, limit = 0;
 
-       txPower = (s8) PHY_GetTxPowerIndexBase(padapter, RFPath, Rate, BandWidth, Channel);
+       txPower = (s8)PHY_GetTxPowerIndexBase(padapter, RFPath, Rate, BandWidth, Channel);
        powerDiffByRate = PHY_GetTxPowerByRate(padapter, RF_PATH_A, Rate);
 
        limit = phy_get_tx_pwr_lmt(
@@ -551,7 +551,7 @@ u8 PHY_GetTxPowerIndex(
        if (txPower > MAX_POWER_INDEX)
                txPower = MAX_POWER_INDEX;
 
-       return (u8) txPower;
+       return (u8)txPower;
 }
 
 void PHY_SetTxPowerLevel8723B(struct adapter *Adapter, u8 Channel)