Commit 34c3a150 authored by Hatice ERTÜRK's avatar Hatice ERTÜRK Committed by Greg Kroah-Hartman

Staging: vt6655: changed C99 // comments

// erased and replace it with /* */ used.
Error found with checkpatch.pl
Signed-off-by: default avatarHatice ERTURK <haticeerturk27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4d363024
...@@ -63,51 +63,51 @@ void STAvUpdateIsrStatCounter(PSStatCounter pStatistic, unsigned long dwIsr) ...@@ -63,51 +63,51 @@ void STAvUpdateIsrStatCounter(PSStatCounter pStatistic, unsigned long dwIsr)
/**********************/ /**********************/
/* ABNORMAL interrupt */ /* ABNORMAL interrupt */
/**********************/ /**********************/
// not any IMR bit invoke irq /* not any IMR bit invoke irq */
if (dwIsr == 0) { if (dwIsr == 0) {
pStatistic->ISRStat.dwIsrUnknown++; pStatistic->ISRStat.dwIsrUnknown++;
return; return;
} }
//Added by Kyle /* Added by Kyle */
if (dwIsr & ISR_TXDMA0) // ISR, bit0 if (dwIsr & ISR_TXDMA0) /* ISR, bit0 */
pStatistic->ISRStat.dwIsrTx0OK++; // TXDMA0 successful pStatistic->ISRStat.dwIsrTx0OK++; /* TXDMA0 successful */
if (dwIsr & ISR_AC0DMA) // ISR, bit1 if (dwIsr & ISR_AC0DMA) /* ISR, bit1 */
pStatistic->ISRStat.dwIsrAC0TxOK++; // AC0DMA successful pStatistic->ISRStat.dwIsrAC0TxOK++; /* AC0DMA successful */
if (dwIsr & ISR_BNTX) // ISR, bit2 if (dwIsr & ISR_BNTX) /* ISR, bit2 */
pStatistic->ISRStat.dwIsrBeaconTxOK++; // BeaconTx successful pStatistic->ISRStat.dwIsrBeaconTxOK++; /* BeaconTx successful */
if (dwIsr & ISR_RXDMA0) // ISR, bit3 if (dwIsr & ISR_RXDMA0) /* ISR, bit3 */
pStatistic->ISRStat.dwIsrRx0OK++; // Rx0 successful pStatistic->ISRStat.dwIsrRx0OK++; /* Rx0 successful */
if (dwIsr & ISR_TBTT) // ISR, bit4 if (dwIsr & ISR_TBTT) /* ISR, bit4 */
pStatistic->ISRStat.dwIsrTBTTInt++; // TBTT successful pStatistic->ISRStat.dwIsrTBTTInt++; /* TBTT successful */
if (dwIsr & ISR_SOFTTIMER) // ISR, bit6 if (dwIsr & ISR_SOFTTIMER) /* ISR, bit6 */
pStatistic->ISRStat.dwIsrSTIMERInt++; pStatistic->ISRStat.dwIsrSTIMERInt++;
if (dwIsr & ISR_WATCHDOG) // ISR, bit7 if (dwIsr & ISR_WATCHDOG) /* ISR, bit7 */
pStatistic->ISRStat.dwIsrWatchDog++; pStatistic->ISRStat.dwIsrWatchDog++;
if (dwIsr & ISR_FETALERR) // ISR, bit8 if (dwIsr & ISR_FETALERR) /* ISR, bit8 */
pStatistic->ISRStat.dwIsrUnrecoverableError++; pStatistic->ISRStat.dwIsrUnrecoverableError++;
if (dwIsr & ISR_SOFTINT) // ISR, bit9 if (dwIsr & ISR_SOFTINT) /* ISR, bit9 */
pStatistic->ISRStat.dwIsrSoftInterrupt++; // software interrupt pStatistic->ISRStat.dwIsrSoftInterrupt++; /* software interrupt */
if (dwIsr & ISR_MIBNEARFULL) // ISR, bit10 if (dwIsr & ISR_MIBNEARFULL) /* ISR, bit10 */
pStatistic->ISRStat.dwIsrMIBNearfull++; pStatistic->ISRStat.dwIsrMIBNearfull++;
if (dwIsr & ISR_RXNOBUF) // ISR, bit11 if (dwIsr & ISR_RXNOBUF) /* ISR, bit11 */
pStatistic->ISRStat.dwIsrRxNoBuf++; // Rx No Buff pStatistic->ISRStat.dwIsrRxNoBuf++; /* Rx No Buff */
if (dwIsr & ISR_RXDMA1) // ISR, bit12 if (dwIsr & ISR_RXDMA1) /* ISR, bit12 */
pStatistic->ISRStat.dwIsrRx1OK++; // Rx1 successful pStatistic->ISRStat.dwIsrRx1OK++; /* Rx1 successful */
if (dwIsr & ISR_SOFTTIMER1) // ISR, bit21 if (dwIsr & ISR_SOFTTIMER1) /* ISR, bit21 */
pStatistic->ISRStat.dwIsrSTIMER1Int++; pStatistic->ISRStat.dwIsrSTIMER1Int++;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment