staging: vt6655: Type encoding info dropped from function name "CARDbUpdateTSF"
authorPavan Bobba <opensource206@gmail.com>
Fri, 27 Oct 2023 08:51:58 +0000 (14:21 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Oct 2023 11:11:00 +0000 (13:11 +0200)
function name "CARDbUpdateTSF" 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>
Link: https://lore.kernel.org/r/926ec04bbfc69926cd1af92684fef392f2d6e04a.1698396278.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 56beaf6de4884e7d42f325c396aa7e7c8f543099..ebb96b4c9406e9d934a991e67de8ef88cf7f2808 100644 (file)
@@ -287,7 +287,7 @@ bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type)
  *
  * Return Value: none
  */
-bool CARDbUpdateTSF(struct vnt_private *priv, unsigned char byRxRate,
+bool card_update_tsf(struct vnt_private *priv, unsigned char byRxRate,
                    u64 qwBSSTimestamp)
 {
        u64 local_tsf;
index b36e276c699b1e72dd79e6210dafa7b8dc2a57a7..caf72892c1cd2ff41b65d10b744633d84c59d089 100644 (file)
@@ -54,7 +54,7 @@ void CARDvSafeResetTx(struct vnt_private *priv);
 void CARDvSafeResetRx(struct vnt_private *priv);
 void CARDbRadioPowerOff(struct vnt_private *priv);
 bool card_set_phy_parameter(struct vnt_private *priv, u8 bb_type);
-bool CARDbUpdateTSF(struct vnt_private *priv, unsigned char byRxRate,
+bool card_update_tsf(struct vnt_private *priv, unsigned char byRxRate,
                    u64 qwBSSTimestamp);
 bool CARDbSetBeaconPeriod(struct vnt_private *priv,
                          unsigned short wBeaconInterval);
index 17a323800ce944f71c85f39da246457cdc0523d0..7d297526e653967a659b854cc73b110b185e44d5 100644 (file)
@@ -1534,7 +1534,7 @@ static void vnt_bss_info_changed(struct ieee80211_hw *hw,
        if (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INFO) &&
            priv->op_mode != NL80211_IFTYPE_AP) {
                if (vif->cfg.assoc && conf->beacon_rate) {
-                       CARDbUpdateTSF(priv, conf->beacon_rate->hw_value,
+                       card_update_tsf(priv, conf->beacon_rate->hw_value,
                                       conf->sync_tsf);
 
                        CARDbSetBeaconPeriod(priv, conf->beacon_int);