mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
eepro100: add bootindex to qom property
Add a qom property with the same name 'bootindex', when we remove it form qdev property, things will continue to work just fine, and we can use qom features which are not supported by qdev property. Signed-off-by: Gonglei <arei.gonglei@huawei.com> Reviewed-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
5df3bf623d
commit
7317bb1782
1 changed files with 10 additions and 1 deletions
|
@ -1906,6 +1906,14 @@ static int e100_nic_init(PCIDevice *pci_dev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void eepro100_instance_init(Object *obj)
|
||||||
|
{
|
||||||
|
EEPRO100State *s = DO_UPCAST(EEPRO100State, dev, PCI_DEVICE(obj));
|
||||||
|
device_add_bootindex_property(obj, &s->conf.bootindex,
|
||||||
|
"bootindex", "/ethernet-phy@0",
|
||||||
|
DEVICE(s), NULL);
|
||||||
|
}
|
||||||
|
|
||||||
static E100PCIDeviceInfo e100_devices[] = {
|
static E100PCIDeviceInfo e100_devices[] = {
|
||||||
{
|
{
|
||||||
.name = "i82550",
|
.name = "i82550",
|
||||||
|
@ -2104,6 +2112,7 @@ static void eepro100_register_types(void)
|
||||||
type_info.parent = TYPE_PCI_DEVICE;
|
type_info.parent = TYPE_PCI_DEVICE;
|
||||||
type_info.class_init = eepro100_class_init;
|
type_info.class_init = eepro100_class_init;
|
||||||
type_info.instance_size = sizeof(EEPRO100State);
|
type_info.instance_size = sizeof(EEPRO100State);
|
||||||
|
type_info.instance_init = eepro100_instance_init;
|
||||||
|
|
||||||
type_register(&type_info);
|
type_register(&type_info);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue