mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
hw/ide: Constify all Property
Reviewed-by: Bernhard Beschow <shentey@gmail.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
90d45638af
commit
aaa1f1a524
6 changed files with 8 additions and 8 deletions
|
@ -24,7 +24,7 @@ static void ide_cf_realize(IDEDevice *dev, Error **errp)
|
|||
ide_dev_initfn(dev, IDE_CFATA, errp);
|
||||
}
|
||||
|
||||
static Property ide_cf_properties[] = {
|
||||
static const Property ide_cf_properties[] = {
|
||||
DEFINE_IDE_DEV_PROPERTIES(),
|
||||
DEFINE_BLOCK_CHS_PROPERTIES(IDEDrive, dev.conf),
|
||||
DEFINE_PROP_BIOS_CHS_TRANS("bios-chs-trans",
|
||||
|
|
|
@ -313,7 +313,7 @@ static void pci_cmd646_ide_exitfn(PCIDevice *dev)
|
|||
}
|
||||
}
|
||||
|
||||
static Property cmd646_ide_properties[] = {
|
||||
static const Property cmd646_ide_properties[] = {
|
||||
DEFINE_PROP_UINT32("secondary", PCIIDEState, secondary, 0),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include "qapi/visitor.h"
|
||||
#include "ide-internal.h"
|
||||
|
||||
static Property ide_props[] = {
|
||||
static const Property ide_props[] = {
|
||||
DEFINE_PROP_UINT32("unit", IDEDevice, unit, -1),
|
||||
DEFINE_PROP_BOOL("win2k-install-hack", IDEDevice, win2k_install_hack, false),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
@ -191,7 +191,7 @@ static void ide_cd_realize(IDEDevice *dev, Error **errp)
|
|||
ide_dev_initfn(dev, IDE_CD, errp);
|
||||
}
|
||||
|
||||
static Property ide_hd_properties[] = {
|
||||
static const Property ide_hd_properties[] = {
|
||||
DEFINE_IDE_DEV_PROPERTIES(),
|
||||
DEFINE_BLOCK_CHS_PROPERTIES(IDEDrive, dev.conf),
|
||||
DEFINE_PROP_BIOS_CHS_TRANS("bios-chs-trans",
|
||||
|
@ -218,7 +218,7 @@ static const TypeInfo ide_hd_info = {
|
|||
.class_init = ide_hd_class_init,
|
||||
};
|
||||
|
||||
static Property ide_cd_properties[] = {
|
||||
static const Property ide_cd_properties[] = {
|
||||
DEFINE_IDE_DEV_PROPERTIES(),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
};
|
||||
|
|
|
@ -101,7 +101,7 @@ ISADevice *isa_ide_init(ISABus *bus, int iobase, int iobase2, int irqnum,
|
|||
return isadev;
|
||||
}
|
||||
|
||||
static Property isa_ide_properties[] = {
|
||||
static const Property isa_ide_properties[] = {
|
||||
DEFINE_PROP_UINT32("iobase", ISAIDEState, iobase, 0x1f0),
|
||||
DEFINE_PROP_UINT32("iobase2", ISAIDEState, iobase2, 0x3f6),
|
||||
DEFINE_PROP_UINT32("irq", ISAIDEState, irqnum, 14),
|
||||
|
|
|
@ -459,7 +459,7 @@ static void macio_ide_initfn(Object *obj)
|
|||
qdev_prop_allow_set_link_before_realize, 0);
|
||||
}
|
||||
|
||||
static Property macio_ide_properties[] = {
|
||||
static const Property macio_ide_properties[] = {
|
||||
DEFINE_PROP_UINT32("channel", MACIOIDEState, channel, 0),
|
||||
DEFINE_PROP_UINT32("addr", MACIOIDEState, addr, -1),
|
||||
DEFINE_PROP_END_OF_LIST(),
|
||||
|
|
|
@ -141,7 +141,7 @@ static void mmio_ide_initfn(Object *obj)
|
|||
sysbus_init_irq(d, &s->irq);
|
||||
}
|
||||
|
||||
static Property mmio_ide_properties[] = {
|
||||
static const Property mmio_ide_properties[] = {
|
||||
DEFINE_PROP_UINT32("shift", MMIOIDEState, shift, 0),
|
||||
DEFINE_PROP_END_OF_LIST()
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue