hw/hppa/machine.c uses NICInfo variables which are declared in "net/net.h". Include it.
This fixes (when modifying unrelated headers): hw/hppa/machine.c:126:21: error: use of undeclared identifier 'nb_nics' for (i = 0; i < nb_nics; i++) { ^ hw/hppa/machine.c:127:30: error: use of undeclared identifier 'nd_table' pci_nic_init_nofail(&nd_table[i], pci_bus, "e1000", NULL); ^ Signed-off-by: Philippe Mathieu-Daudé <phi...@redhat.com> --- hw/hppa/machine.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c index 7e23675429..6c55ed0af1 100644 --- a/hw/hppa/machine.c +++ b/hw/hppa/machine.c @@ -20,6 +20,7 @@ #include "qemu/units.h" #include "qapi/error.h" #include "qemu/log.h" +#include "net/net.h" #define MAX_IDE_BUS 2 -- 2.21.0