Home
last modified time | relevance | path

Searched refs:dwIsr (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/staging/vt6655/
Dmib.c61 void STAvUpdateIsrStatCounter(PSStatCounter pStatistic, unsigned long dwIsr) in STAvUpdateIsrStatCounter() argument
68 if (dwIsr == 0) { in STAvUpdateIsrStatCounter()
74 if (dwIsr & ISR_TXDMA0) /* ISR, bit0 */ in STAvUpdateIsrStatCounter()
77 if (dwIsr & ISR_AC0DMA) /* ISR, bit1 */ in STAvUpdateIsrStatCounter()
80 if (dwIsr & ISR_BNTX) /* ISR, bit2 */ in STAvUpdateIsrStatCounter()
83 if (dwIsr & ISR_RXDMA0) /* ISR, bit3 */ in STAvUpdateIsrStatCounter()
86 if (dwIsr & ISR_TBTT) /* ISR, bit4 */ in STAvUpdateIsrStatCounter()
89 if (dwIsr & ISR_SOFTTIMER) /* ISR, bit6 */ in STAvUpdateIsrStatCounter()
92 if (dwIsr & ISR_WATCHDOG) /* ISR, bit7 */ in STAvUpdateIsrStatCounter()
95 if (dwIsr & ISR_FETALERR) /* ISR, bit8 */ in STAvUpdateIsrStatCounter()
[all …]
Ddevice_main.c1069 MACvReadISR(pDevice->PortOffset, &pDevice->dwIsr); in device_intr()
1071 if (pDevice->dwIsr == 0) in device_intr()
1074 if (pDevice->dwIsr == 0xffffffff) { in device_intr()
1099 while (pDevice->dwIsr != 0) { in device_intr()
1100 STAvUpdateIsrStatCounter(&pDevice->scStatistic, pDevice->dwIsr); in device_intr()
1101 MACvWriteISR(pDevice->PortOffset, pDevice->dwIsr); in device_intr()
1103 if (pDevice->dwIsr & ISR_FETALERR) { in device_intr()
1107 device_error(pDevice, pDevice->dwIsr); in device_intr()
1110 if (pDevice->dwIsr & ISR_TBTT) { in device_intr()
1130 if (pDevice->dwIsr & ISR_BNTX) { in device_intr()
[all …]
Dmib.h74 void STAvUpdateIsrStatCounter(PSStatCounter pStatistic, unsigned long dwIsr);
Ddevice.h242 unsigned long dwIsr; member