Subversion Repositories Kolibri OS

Rev

Rev 808 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 808 Rev 877
Line 1... Line 1...
1
#pragma pack(push, 1)
1
#pragma pack(push, 1)
2
typedef struct
2
typedef struct
3
{
3
{
4
  CARD16 device;
4
     u16_t device;
5
  CARD16 ChipSet;
5
     u16_t ChipSet;
6
}PciChipset_t;
6
}PciChipset_t;
7
#pragma pack(pop)
7
#pragma pack(pop)
Line 8... Line 8...
8
 
8
 
Line 73... Line 73...
73
	return(PCI_MAKE_TAG(busnum,devnum,funcnum));
73
	return(PCI_MAKE_TAG(busnum,devnum,funcnum));
74
}
74
}
75
 
75
 
76
const PciChipset_t *PciDevMatch(CARD16 dev,const PciChipset_t *list);
76
const PciChipset_t *PciDevMatch(u16_t dev,const PciChipset_t *list);
Line 77... Line 77...
77
CARD32 pciGetBaseSize(int bus, int devfn, int index, Bool destructive, Bool *min);
77
u32_t pciGetBaseSize(int bus, int devfn, int index, Bool destructive, Bool *min);
78
78