diff options
| author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-05-03 19:03:00 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2009-05-03 19:03:00 +0000 |
| commit | 6407f37373093fd56cde9e20b0b5a878b67521ca (patch) | |
| tree | 88aaaa831dd73aa4d3381a53f506ea89b7d685bf /hw/pci.h | |
| parent | ccbb4d44fc5e92bac6006a218ccda3138407352c (diff) | |
| download | focaccia-qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.tar.gz focaccia-qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.zip | |
use PCI_HEADER_TYPE.
use symbolic value instead of 0x0e and related value. Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'hw/pci.h')
| -rw-r--r-- | hw/pci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/pci.h b/hw/pci.h index 4a30d9840c..ff858a1b3b 100644 --- a/hw/pci.h +++ b/hw/pci.h @@ -102,6 +102,10 @@ typedef struct PCIIORegion { #define PCI_REVISION_ID 0x08 /* 8 bits */ #define PCI_CLASS_DEVICE 0x0a /* Device class */ #define PCI_HEADER_TYPE 0x0e /* 8 bits */ +#define PCI_HEADER_TYPE_NORMAL 0 +#define PCI_HEADER_TYPE_BRIDGE 1 +#define PCI_HEADER_TYPE_CARDBUS 2 +#define PCI_HEADER_TYPE_MULTI_FUNCTION 0x80 #define PCI_SUBSYSTEM_VENDOR_ID 0x2c /* 16 bits */ #define PCI_SUBSYSTEM_ID 0x2e /* 16 bits */ #define PCI_INTERRUPT_LINE 0x3c /* 8 bits */ |