mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 23:23:03 +00:00
staging: vt6655: Type encoding info dropped from function name "CARDvSafeResetTx"
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>
This commit is contained in:
parent
ac491ce137
commit
157327d099
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user