From: Thomas Huth Date: Thu, 10 Nov 2022 12:52:24 +0000 (+0100) Subject: net: Replace "Supported NIC models" with "Available NIC models" X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3b0cca8e4e674bda3457435208c3268767b6b085;p=qemu.git net: Replace "Supported NIC models" with "Available NIC models" Just because a NIC model is compiled into the QEMU binary does not necessary mean that it can be used with each and every machine. So let's rather talk about "available" models instead of "supported" models, just to avoid confusion. Reviewed-by: Claudio Fontana Signed-off-by: Thomas Huth Signed-off-by: Jason Wang --- diff --git a/net/net.c b/net/net.c index e8cd95cb7e..ebc7ce0231 100644 --- a/net/net.c +++ b/net/net.c @@ -941,7 +941,7 @@ int qemu_show_nic_models(const char *arg, const char *const *models) return 0; } - printf("Supported NIC models:\n"); + printf("Available NIC models:\n"); for (i = 0 ; models[i]; i++) { printf("%s\n", models[i]); }