Changeset 501 for GPL/trunk/lib32/irq.c
- Timestamp:
- Jul 11, 2010, 7:01:51 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/lib32/irq.c
r479 r501 174 174 IRQ_SLOT *pSlot; 175 175 176 #ifdef DEBUG 177 // dprintf(("enter int proc %d %d",ulSlotNo, *pulIrq)); 178 #endif 176 //dprintf(("enter int proc %d %d",ulSlotNo, *pulIrq)); 179 177 180 178 if(fSuspended) … … 183 181 //Don't pass it to the linux handler as the device doesn't respond as expected 184 182 //when suspended 185 #ifdef DEBUG186 183 dprintf(("Slot %d IRQ %d suspended",ulSlotNo, *pulIrq)); 187 #endif188 184 return FALSE; 189 185 } … … 229 225 //ok, this interrupt was intended for us; notify the 16 bits MMPM/2 driver 230 226 OSS32_ProcessIRQ(); 231 #ifdef DEBUG 232 // dprintf(("exit(1) int proc %d %d",ulSlotNo, *pulIrq)); 233 #endif 227 //dprintf(("exit(1) int proc %d %d",ulSlotNo, *pulIrq)); 234 228 eoiIrq[pSlot->irqNo] = 0; 235 229 return TRUE; … … 238 232 } 239 233 } 240 #ifdef DEBUG 241 // dprintf(("exit(0) int proc %d %d",ulSlotNo, *pulIrq)); 242 #endif 234 //dprintf(("exit(0) int proc %d %d",ulSlotNo, *pulIrq)); 243 235 244 236 return FALSE;
Note:
See TracChangeset
for help on using the changeset viewer.