mirror of https://github.com/xemu-project/xemu.git
hw/arm/exynos4: use qemu_create_nic_device()
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
b3cfec5bc9
commit
809601b3aa
|
@ -76,10 +76,8 @@ static void lan9215_init(uint32_t base, qemu_irq irq)
|
|||
SysBusDevice *s;
|
||||
|
||||
/* This should be a 9215 but the 9118 is close enough */
|
||||
if (nd_table[0].used) {
|
||||
qemu_check_nic_model(&nd_table[0], "lan9118");
|
||||
dev = qdev_new(TYPE_LAN9118);
|
||||
qdev_set_nic_properties(dev, &nd_table[0]);
|
||||
dev = qemu_create_nic_device(TYPE_LAN9118, true, NULL);
|
||||
if (dev) {
|
||||
qdev_prop_set_uint32(dev, "mode_16bit", 1);
|
||||
s = SYS_BUS_DEVICE(dev);
|
||||
sysbus_realize_and_unref(s, &error_fatal);
|
||||
|
|
Loading…
Reference in New Issue