staging: vt6655: dead code remove STAvUpdate802_11Counter
authorMalcolm Priestley <tvboxspy@gmail.com>
Sun, 31 May 2015 09:35:21 +0000 (10:35 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 31 May 2015 21:24:57 +0000 (06:24 +0900)
This function is nolonger of any future use.

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6655/mib.c
drivers/staging/vt6655/mib.h

index d55c762027ed4f44e9592b1a037ed88aa6480ced..e9d23a742e6a60fcdada1fb04b5c1580f80463cf 100644 (file)
@@ -110,30 +110,3 @@ void STAvUpdateIsrStatCounter(PSStatCounter pStatistic, unsigned long dwIsr)
        if (dwIsr & ISR_SOFTTIMER1)           /* ISR, bit21 */
                pStatistic->ISRStat.dwIsrSTIMER1Int++;
 }
-
-/*
- * Description: Update 802.11 mib counter
- *
- * Parameters:
- *  In:
- *      p802_11Counter  - Pointer to 802.11 mib counter
- *      pStatistic      - Pointer to Statistic Counter Data Structure
- *      dwCounter       - hardware counter for 802.11 mib
- *  Out:
- *      none
- *
- * Return Value: none
- *
- */
-void
-STAvUpdate802_11Counter(
-       PSDot11Counters         p802_11Counter,
-       PSStatCounter           pStatistic,
-       unsigned long dwCounter
-)
-{
-       p802_11Counter->RTSSuccessCount += (unsigned long long)  (dwCounter & 0x000000ff);
-       p802_11Counter->RTSFailureCount += (unsigned long long) ((dwCounter & 0x0000ff00) >> 8);
-       p802_11Counter->ACKFailureCount += (unsigned long long) ((dwCounter & 0x00ff0000) >> 16);
-       p802_11Counter->FCSErrorCount +=   (unsigned long long) ((dwCounter & 0xff000000) >> 24);
-}
index 5cb59b8a1c7c0c55db5841e8d8adad6dabe2d882..64ca360d3140667e7b6f7898415ee7fa09af1924 100644 (file)
@@ -73,10 +73,4 @@ typedef struct tagSStatCounter {
 
 void STAvUpdateIsrStatCounter(PSStatCounter pStatistic, unsigned long dwIsr);
 
-void STAvUpdate802_11Counter(
-       PSDot11Counters p802_11Counter,
-       PSStatCounter   pStatistic,
-       unsigned long dwCounter
-);
-
 #endif // __MIB_H__