Changeset 34 for GPL/trunk/drv32
- Timestamp:
- Dec 11, 2005, 5:57:39 PM (20 years ago)
- Location:
- GPL/trunk/drv32
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/drv32/init.c
r33 r34 44 44 #include "parse.h" 45 45 46 #pragma comment(copyright,"@#Netlabs: Universal audio driver for OS/2 v.1.1.3#@ (c) Netlabs 2005") 46 char copyright[]="@#Netlabs:1.13#@.Universal audio driver for OS/2 (c) Netlabs 2005\0x0\0x0\0xb"; 47 47 48 48 const char ERR_ERROR[] = "ERROR: "; -
GPL/trunk/drv32/irq.cpp
r33 r34 51 51 &ISR13, 52 52 &ISR14, 53 &ISR15 53 &ISR15, 54 54 }; 55 55 -
GPL/trunk/drv32/irq.h
r33 r34 25 25 #define __IRQ_H__ 26 26 27 #define NUM_IRQLEVELS 16 27 //#define NUM_IRQLEVELS 16 28 #define NUM_IRQLEVELS 256 //ACPI 28 29 29 30 extern "C" FARPTR16 ISR03; -
GPL/trunk/drv32/rm.cpp
r33 r34 212 212 //Fill in resources read from PCI Configuration space 213 213 detectedResources.uIRQLevel[0] = pciConfigData->InterruptLine; 214 if(detectedResources.uIRQLevel[0] == 0 || detectedResources.uIRQLevel[0] > 15) {214 if(detectedResources.uIRQLevel[0] == 0 || detectedResources.uIRQLevel[0] > 255) { 215 215 //Does not matter if device doesn't have any resources (like a PCI bus controller) 216 216 dprintf(("Invalid PCI irq %x", (int)detectedResources.uIRQLevel[0]));
Note:
See TracChangeset
for help on using the changeset viewer.