diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-28 17:29:07 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-03-28 17:29:07 +0000 |
commit | cef3017cd7c0d63a12ff743e1e72caf49779c493 (patch) | |
tree | 11c081705e73dafb491d69ee77d85d5dbe68e206 /hw/eepro100.c | |
parent | 81f099ad3266eede194bcb80f44e9ffe1772f257 (diff) | |
download | qemu-cef3017cd7c0d63a12ff743e1e72caf49779c493.tar.gz qemu-cef3017cd7c0d63a12ff743e1e72caf49779c493.tar.bz2 qemu-cef3017cd7c0d63a12ff743e1e72caf49779c493.zip |
Clean some PCI defines (Stefan Weil)
this patch adds some more defines from linux/pci_regs.h to
hw/pci.h. There is now no longer a need to define them in
eepro100.c, so they were removed there.
Some defines from linux/pci_regs.h had similar, but not
the same defines in hw/pci.h (PCI_REVISION_ID / PCI_REVISION,
PCI_SUBSYSTEM_VENDOR_ID / PCI_SUBVENDOR_ID,
PCI_SUBSYSTEM_ID / PCI_SUBDEVICE_ID).
I suggest to use the "standard" from linux/pci_regs.h and
replace the "old" Qemu ones. To facilitate the migration,
my patch does not remove the old defines but marks them
as obsolete. After a migration to the "standard" defines,
pci.h could use linux/pci_regs.h which is far more complete.
The patch is needed for an updated maintainer version of
hw/eepro100.c which I'd like to see in Qemu stable.
* Remove declarations already declared in header file from eepro100.c
* Add missing declarations from pci_regs.h to pci.h
* Mark "non-standard" declarations in pci.h as obsolete
Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6901 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/eepro100.c')
-rw-r--r-- | hw/eepro100.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/eepro100.c b/hw/eepro100.c index 2948d3c154..0a343df65a 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -47,12 +47,6 @@ /* Common declarations for all PCI devices. */ -#define PCI_DEVICE_ID 0x02 /* 16 bits */ -#define PCI_COMMAND 0x04 /* 16 bits */ -#define PCI_STATUS 0x06 /* 16 bits */ - -#define PCI_REVISION_ID 0x08 /* 8 bits */ - #define PCI_CONFIG_8(offset, value) \ (pci_conf[offset] = (value)) #define PCI_CONFIG_16(offset, value) \ |