Changeset 34 for GPL/trunk/drv32


Ignore:
Timestamp:
Dec 11, 2005, 5:57:39 PM (20 years ago)
Author:
vladest
Message:

Latest update from ALSA. some intial > 15 interrupts support

Location:
GPL/trunk/drv32
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/drv32/init.c

    r33 r34  
    4444#include "parse.h"
    4545
    46 #pragma comment(copyright,"@#Netlabs: Universal audio driver for OS/2 v.1.1.3#@ (c) Netlabs 2005")
     46char copyright[]="@#Netlabs:1.13#@.Universal audio driver for OS/2 (c) Netlabs 2005\0x0\0x0\0xb";
    4747
    4848const char ERR_ERROR[]   = "ERROR: ";
  • GPL/trunk/drv32/irq.cpp

    r33 r34  
    5151   &ISR13,
    5252   &ISR14,
    53    &ISR15
     53   &ISR15,
    5454};
    5555
  • GPL/trunk/drv32/irq.h

    r33 r34  
    2525#define __IRQ_H__
    2626
    27 #define NUM_IRQLEVELS           16
     27//#define NUM_IRQLEVELS         16
     28#define NUM_IRQLEVELS           256 //ACPI
    2829
    2930extern "C" FARPTR16 ISR03;
  • GPL/trunk/drv32/rm.cpp

    r33 r34  
    212212   //Fill in resources read from PCI Configuration space
    213213   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)  {
    215215       //Does not matter if device doesn't have any resources (like a PCI bus controller)
    216216       dprintf(("Invalid PCI irq %x", (int)detectedResources.uIRQLevel[0]));
Note: See TracChangeset for help on using the changeset viewer.