diff options
author | blueswir1 | 2008-10-02 20:33:50 +0200 |
---|---|---|
committer | blueswir1 | 2008-10-02 20:33:50 +0200 |
commit | 09bc878a13c1ca1c5d2400db5657ea7d04fe26bc (patch) | |
tree | 6d73c3ea906a3e4473e3376569eff1541392e185 | |
parent | Make monitor command tables const (diff) | |
download | qemu-09bc878a13c1ca1c5d2400db5657ea7d04fe26bc.tar.gz qemu-09bc878a13c1ca1c5d2400db5657ea7d04fe26bc.tar.xz qemu-09bc878a13c1ca1c5d2400db5657ea7d04fe26bc.zip |
Make PCI class description tables const
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5400 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r-- | hw/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -515,7 +515,7 @@ typedef struct { const char *desc; } pci_class_desc; -static pci_class_desc pci_class_descriptions[] = +static const pci_class_desc pci_class_descriptions[] = { { 0x0100, "SCSI controller"}, { 0x0101, "IDE controller"}, @@ -559,7 +559,7 @@ static void pci_info_device(PCIDevice *d) { int i, class; PCIIORegion *r; - pci_class_desc *desc; + const pci_class_desc *desc; term_printf(" Bus %2d, device %3d, function %d:\n", d->bus->bus_num, d->devfn >> 3, d->devfn & 7); |