diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-03-14 08:17:39 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-03-14 08:17:39 +0100 |
commit | d213082d76a24d3ba2e033416891a170b39c1ded (patch) | |
tree | 50f586ac8988d53a5789c8203b693f70e5320230 /com32/include/sys | |
parent | 56bd7c3ec4446d237f82ede9928ccff075d47041 (diff) | |
download | syslinux-d213082d76a24d3ba2e033416891a170b39c1ded.tar.gz syslinux-d213082d76a24d3ba2e033416891a170b39c1ded.tar.xz syslinux-d213082d76a24d3ba2e033416891a170b39c1ded.zip |
hdt: irq have to be in dev_info
Moving irq stuff to the dev_info structure to keep coherent
Diffstat (limited to 'com32/include/sys')
-rw-r--r-- | com32/include/sys/pci.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/include/sys/pci.h b/com32/include/sys/pci.h index d7363041..48b56af8 100644 --- a/com32/include/sys/pci.h +++ b/com32/include/sys/pci.h @@ -30,6 +30,7 @@ struct pci_dev_info { int linux_kernel_module_count; char class_name[PCI_CLASS_NAME_SIZE]; /* The most precise class name */ char category_name[PCI_CLASS_NAME_SIZE]; /*The general category*/ + uint8_t irq; }; /* PCI device (really, function) */ @@ -47,7 +48,6 @@ struct pci_device { uint32_t vid_did; uint32_t svid_sdid; uint32_t rid_class; - uint8_t irq; }; }; struct pci_dev_info *dev_info; |