Lines Matching refs:chip_irq
1894 u_int8_t chip_irq; in AscGetChipIRQ() local
1900 chip_irq = ((cfg_lsw >> 8) & 0x07) + 10; in AscGetChipIRQ()
1901 if((chip_irq == 13) || (chip_irq > 15)) in AscGetChipIRQ()
1903 return(chip_irq); in AscGetChipIRQ()
1908 chip_irq = (cfg_lsw >> 2) & 0x07; in AscGetChipIRQ()
1909 if ((chip_irq == 0) || in AscGetChipIRQ()
1910 (chip_irq == 4) || in AscGetChipIRQ()
1911 (chip_irq == 7)) { in AscGetChipIRQ()
1914 return (chip_irq + (ASC_MIN_IRQ_NO - 1)); in AscGetChipIRQ()
1917 chip_irq = (cfg_lsw >> 2) & 0x03; in AscGetChipIRQ()
1918 if (chip_irq == 3) in AscGetChipIRQ()
1919 chip_irq += 2; in AscGetChipIRQ()
1920 return (chip_irq + ASC_MIN_IRQ_NO); in AscGetChipIRQ()