Changeset 547 for GPL/trunk/lib32/irq.c


Ignore:
Timestamp:
Mar 16, 2011, 10:31:12 PM (14 years ago)
Author:
David Azarewicz
Message:

APIC interrupt transition fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/lib32/irq.c

    r545 r547  
    7373        ULONG hRes;
    7474
    75         dprintf(("request_irq: Enter for irq %d", irq & 0xff ));
     75        rprintf(("request_irq: irq %d", irq & 0xff ));
    7676        if ( !pSlot ) {
    7777                // find empty slot
     
    127127                                pSlot->flHandlers &= ~(1 << u);
    128128                                if( pSlot->flHandlers == 0 ) {
    129                                         dprintf(("free_irq: irq %d", irq & 0xff ));
     129                                        rprintf(("free_irq: irq %d", irq & 0xff ));
    130130                                        ALSA_FreeIrq(pSlot->irqNo);
    131131                                        pSlot->irqNo = 0;
     
    177177                //Don't pass it to the linux handler as the device doesn't respond as expected
    178178                //when suspended
    179                 dprintf(("Slot %d IRQ %d suspended",ulSlotNo, *pulIrq));
     179                rprintf(("Slot %d IRQ %d suspended",ulSlotNo, *pulIrq));
    180180                return FALSE;
    181181        }
Note: See TracChangeset for help on using the changeset viewer.