staging: vt6655: Type encoding info dropped from function name "CARDvSafeResetTx"
authorPavan Bobba <opensource206@gmail.com>
Tue, 31 Oct 2023 05:34:32 +0000 (11:04 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Nov 2023 12:47:42 +0000 (12:47 +0000)
function name "CARDvSafeResetTx" updated like below:

a.type encoding info dropped from name
b.camelcase name replaced by snakecase

Issue found by checkpatch

Signed-off-by: Pavan Bobba <opensource206@gmail.com>
Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>
Link: https://lore.kernel.org/r/785a163ab01555bd0a7ed87484d727560d22cd95.1698730318.git.opensource206@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/card.c
drivers/staging/vt6655/card.h
drivers/staging/vt6655/device_main.c

index 7980b93..b249f22 100644 (file)
@@ -382,7 +382,7 @@ void card_radio_power_off(struct vnt_private *priv)
        vt6655_mac_reg_bits_on(priv->port_offset, MAC_REG_GPIOCTL0, LED_ACTSET);  /* LED issue */
 }
 
-void CARDvSafeResetTx(struct vnt_private *priv)
+void card_safe_reset_tx(struct vnt_private *priv)
 {
        unsigned int uu;
        struct vnt_tx_desc *pCurrTD;
index 5ca715b..f52e425 100644 (file)
@@ -50,7 +50,7 @@ u64 vt6655_get_current_tsf(struct vnt_private *priv);
 u64 card_get_next_tbtt(u64 qwTSF, unsigned short beacon_interval);
 u64 card_get_tsf_offset(unsigned char rx_rate, u64 qwTSF1, u64 qwTSF2);
 unsigned char card_get_pkt_type(struct vnt_private *priv);
-void CARDvSafeResetTx(struct vnt_private *priv);
+void card_safe_reset_tx(struct vnt_private *priv);
 void CARDvSafeResetRx(struct vnt_private *priv);
 void card_radio_power_off(struct vnt_private *priv);
 bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type);
index 210c943..a1f3dc2 100644 (file)
@@ -463,7 +463,7 @@ static void device_init_registers(struct vnt_private *priv)
        /* reset Tx pointer */
        CARDvSafeResetRx(priv);
        /* reset Rx pointer */
-       CARDvSafeResetTx(priv);
+       card_safe_reset_tx(priv);
 
        if (priv->local_id <= REV_ID_VT3253_A1)
                vt6655_mac_reg_bits_on(priv->port_offset, MAC_REG_RCR, RCR_WPAERR);