Changeset 547 for GPL/trunk/include


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

APIC interrupt transition fixes

Location:
GPL/trunk/include
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/include/dbgos2.h

    r521 r547  
    2525#ifndef __COMMDBG_H__
    2626#define __COMMDBG_H__
     27
     28typedef struct {
     29        unsigned short usState;
     30        unsigned long ulIntServiced[4];
     31        unsigned long ulIntUnserviced[4];
     32} DBGINT;
    2733
    2834#ifdef __cplusplus
  • GPL/trunk/include/linux/pci.h

    r522 r547  
    374374        int (*deactivate)(struct pci_dev *dev);
    375375#ifdef TARGET_OS2
    376         void *pcidriver;
     376        unsigned int picirq;
     377        unsigned int apicirq;
     378        unsigned long hAdapter;
     379        unsigned long hDevice;
     380        void *pcidriver;
    377381#endif
    378382};
  • GPL/trunk/include/osspci.h

    r545 r547  
    3535BOOL    RMRequestIRQ(ULONG ulIrq, BOOL fShared, ULONG *phRes);
    3636BOOL    RMDeallocateIRQ(ULONG hRes);
    37 VOID    RMDone(ULONG DevID);
     37VOID    RMDone(ULONG DevID, ULONG *phAdapter, ULONG *phDevice);
     38VOID    RMSetHandles(ULONG hAdapter, ULONG hDevice);
    3839
    3940#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.