staging: vt6655: Type encoding info dropped from function name "CARDqGetNextTBTT"
authorPavan Bobba <opensource206@gmail.com>
Tue, 31 Oct 2023 05:34:30 +0000 (11:04 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 23 Nov 2023 12:47:42 +0000 (12:47 +0000)
function name "CARDqGetNextTBTT" 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/8e142b33245e6933fb178080b0b14371939a84e6.1698730318.git.opensource206@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/card.c
drivers/staging/vt6655/card.h

index e4b40125b094211944677e81d0ad656957f43b8d..716fd36325083c5463ef50f40e19d0268b734df2 100644 (file)
@@ -12,7 +12,7 @@
  *      CARDbIsOFDMinBasicRate - Check if any OFDM rate is in BasicRateSet
  *      card_get_tsf_offset - Calculate TSFOffset
  *      vt6655_get_current_tsf - Read Current NIC TSF counter
- *      CARDqGetNextTBTT - Calculate Next Beacon TSF counter
+ *      card_get_next_tbtt - Calculate Next Beacon TSF counter
  *      CARDvSetFirstNextTBTT - Set NIC Beacon time
  *      CARDvUpdateNextTBTT - Sync. NIC Beacon time
  *      CARDbRadioPowerOff - Turn Off NIC Radio Power
@@ -327,7 +327,7 @@ bool card_set_beacon_period(struct vnt_private *priv,
 
        next_tbtt = vt6655_get_current_tsf(priv); /* Get Local TSF counter */
 
-       next_tbtt = CARDqGetNextTBTT(next_tbtt, beacon_interval);
+       next_tbtt = card_get_next_tbtt(next_tbtt, beacon_interval);
 
        /* set HW beacon interval */
        iowrite16(beacon_interval, priv->port_offset + MAC_REG_BI);
@@ -764,7 +764,7 @@ u64 vt6655_get_current_tsf(struct vnt_private *priv)
  *
  * Return Value: TSF value of next Beacon
  */
-u64 CARDqGetNextTBTT(u64 qwTSF, unsigned short beacon_interval)
+u64 card_get_next_tbtt(u64 qwTSF, unsigned short beacon_interval)
 {
        u32 beacon_int;
 
@@ -799,7 +799,7 @@ void CARDvSetFirstNextTBTT(struct vnt_private *priv,
 
        next_tbtt = vt6655_get_current_tsf(priv); /* Get Local TSF counter */
 
-       next_tbtt = CARDqGetNextTBTT(next_tbtt, beacon_interval);
+       next_tbtt = card_get_next_tbtt(next_tbtt, beacon_interval);
        /* Set NextTBTT */
        next_tbtt =  le64_to_cpu(next_tbtt);
        iowrite32((u32)next_tbtt, iobase + MAC_REG_NEXTTBTT);
@@ -826,7 +826,7 @@ void CARDvUpdateNextTBTT(struct vnt_private *priv, u64 qwTSF,
 {
        void __iomem *iobase = priv->port_offset;
 
-       qwTSF = CARDqGetNextTBTT(qwTSF, beacon_interval);
+       qwTSF = card_get_next_tbtt(qwTSF, beacon_interval);
        /* Set NextTBTT */
        qwTSF =  le64_to_cpu(qwTSF);
        iowrite32((u32)qwTSF, iobase + MAC_REG_NEXTTBTT);
index 1758a95f3ab072e98f2adfb09eab45739a725efb..ab1193799239d67febb58474f36b9e1df048f40e 100644 (file)
@@ -47,7 +47,7 @@ void CARDvSetFirstNextTBTT(struct vnt_private *priv,
 void CARDvUpdateNextTBTT(struct vnt_private *priv, u64 qwTSF,
                         unsigned short beacon_interval);
 u64 vt6655_get_current_tsf(struct vnt_private *priv);
-u64 CARDqGetNextTBTT(u64 qwTSF, unsigned short beacon_interval);
+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);