diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-11-08 15:53:36 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-11-08 15:53:36 -0500 |
commit | 2ed2f58e6284319d4b84fe37d215afcfbbbac300 (patch) | |
tree | 28a63a760f9f9a3032c599b41498c906954af4b0 /src/shadow.c | |
parent | f782d602d08400cea6750cff440a69e8cc1690de (diff) | |
download | seabios-hppa-2ed2f58e6284319d4b84fe37d215afcfbbbac300.zip seabios-hppa-2ed2f58e6284319d4b84fe37d215afcfbbbac300.tar.gz seabios-hppa-2ed2f58e6284319d4b84fe37d215afcfbbbac300.tar.bz2 |
Synch pci ids and registers with Linux kernel source.
Add pci_regs.h and pci_ids.h from kernel repo.
Modify code to use the above includes and to use the kernel definitions.
Diffstat (limited to 'src/shadow.c')
-rw-r--r-- | src/shadow.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shadow.c b/src/shadow.c index cb2fadf..b99c139 100644 --- a/src/shadow.c +++ b/src/shadow.c @@ -8,6 +8,7 @@ #include "util.h" // memcpy #include "pci.h" // pci_config_writeb #include "config.h" // CONFIG_* +#include "pci_ids.h" // PCI_VENDOR_ID_INTEL // Test if 'addr' is in the range from 'start'..'start+size' #define IN_RANGE(addr, start, size) ({ \ |