diff options
| author | Thomas Huth <thuth@redhat.com> | 2023-06-29 14:54:49 +0200 |
|---|---|---|
| committer | Michael Tokarev <mjt@tls.msk.ru> | 2023-07-08 07:24:38 +0300 |
| commit | b697a48924fc1b6ea3b6077f824a2753cfa1b210 (patch) | |
| tree | e25b5f4b27a9198fca74c2339b1295a660b3dac6 /hw/arm/virt.c | |
| parent | c35d9373be7b60a442b9bbb6cfd2ad5f5bde581d (diff) | |
| download | focaccia-qemu-b697a48924fc1b6ea3b6077f824a2753cfa1b210.tar.gz focaccia-qemu-b697a48924fc1b6ea3b6077f824a2753cfa1b210.zip | |
hw: Simplify calls to pci_nic_init_nofail()
pci_nic_init_nofail() calls qemu_find_nic_model(), and this function sets nd->model = g_strdup(default_model) if it has not been initialized yet. So we don't have to set nd->model to the default_nic in the calling sites. Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/arm/virt.c')
| -rw-r--r-- | hw/arm/virt.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hw/arm/virt.c b/hw/arm/virt.c index 796181e169..8a4c663735 100644 --- a/hw/arm/virt.c +++ b/hw/arm/virt.c @@ -1479,13 +1479,7 @@ static void create_pcie(VirtMachineState *vms) vms->bus = pci->bus; if (vms->bus) { for (i = 0; i < nb_nics; i++) { - NICInfo *nd = &nd_table[i]; - - if (!nd->model) { - nd->model = g_strdup(mc->default_nic); - } - - pci_nic_init_nofail(nd, pci->bus, nd->model, NULL); + pci_nic_init_nofail(&nd_table[i], pci->bus, mc->default_nic, NULL); } } |