- Timestamp:
- Apr 21, 2008, 2:52:19 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/alsa-resync1/alsa-kernel/drivers/serial-u16550.c
r290 r348 352 352 353 353 /* Do some vague tests for the presence of the uart */ 354 if (io_base == 0 ) {354 if (io_base == 0 || io_base == SNDRV_AUTO_PORT) { 355 355 return -ENODEV; /* Not configured */ 356 356 } … … 830 830 } 831 831 832 if (irq >= 0) {832 if (irq >= 0 && irq != SNDRV_AUTO_IRQ) { 833 833 if (request_irq(irq, snd_uart16550_interrupt, 834 834 SA_INTERRUPT, "Serial MIDI", (void *) uart)) { 835 uart->irq = -1;836 835 snd_printk("irq %d busy. Using Polling.\n", irq); 837 836 } else {
Note:
See TracChangeset
for help on using the changeset viewer.