Changeset 547 for GPL/trunk/lib32/irq.c
- Timestamp:
- Mar 16, 2011, 10:31:12 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/lib32/irq.c
r545 r547 73 73 ULONG hRes; 74 74 75 dprintf(("request_irq: Enter forirq %d", irq & 0xff ));75 rprintf(("request_irq: irq %d", irq & 0xff )); 76 76 if ( !pSlot ) { 77 77 // find empty slot … … 127 127 pSlot->flHandlers &= ~(1 << u); 128 128 if( pSlot->flHandlers == 0 ) { 129 dprintf(("free_irq: irq %d", irq & 0xff ));129 rprintf(("free_irq: irq %d", irq & 0xff )); 130 130 ALSA_FreeIrq(pSlot->irqNo); 131 131 pSlot->irqNo = 0; … … 177 177 //Don't pass it to the linux handler as the device doesn't respond as expected 178 178 //when suspended 179 dprintf(("Slot %d IRQ %d suspended",ulSlotNo, *pulIrq));179 rprintf(("Slot %d IRQ %d suspended",ulSlotNo, *pulIrq)); 180 180 return FALSE; 181 181 }
Note:
See TracChangeset
for help on using the changeset viewer.