diff options
author | Philippe Mathieu-Daudé | 2019-04-12 18:54:15 +0200 |
---|---|---|
committer | Peter Maydell | 2019-04-29 18:57:21 +0200 |
commit | 94630665b5b04235400a7bb6236539b2593eff35 (patch) | |
tree | 994605159fbd29ce374a7ffd5b344f473e4eaaf7 /hw/arm/mps2-tz.c | |
parent | hw/net/ne2000-isa: Add guards to the header (diff) | |
download | qemu-94630665b5b04235400a7bb6236539b2593eff35.tar.gz qemu-94630665b5b04235400a7bb6236539b2593eff35.tar.xz qemu-94630665b5b04235400a7bb6236539b2593eff35.zip |
hw/net/lan9118: Export TYPE_LAN9118 and use it instead of hardcoded string
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190412165416.7977-12-philmd@redhat.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/mps2-tz.c')
-rw-r--r-- | hw/arm/mps2-tz.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/arm/mps2-tz.c b/hw/arm/mps2-tz.c index f79f090a4a..7832408bb7 100644 --- a/hw/arm/mps2-tz.c +++ b/hw/arm/mps2-tz.c @@ -56,6 +56,7 @@ #include "hw/arm/armsse.h" #include "hw/dma/pl080.h" #include "hw/ssi/pl022.h" +#include "hw/net/lan9118.h" #include "net/net.h" #include "hw/core/split-irq.h" @@ -244,7 +245,7 @@ static MemoryRegion *make_eth_dev(MPS2TZMachineState *mms, void *opaque, * except that it doesn't support the checksum-offload feature. */ qemu_check_nic_model(nd, "lan9118"); - mms->lan9118 = qdev_create(NULL, "lan9118"); + mms->lan9118 = qdev_create(NULL, TYPE_LAN9118); qdev_set_nic_properties(mms->lan9118, nd); qdev_init_nofail(mms->lan9118); |