mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00
net: remove qemu_check_nic_model()
There are no callers of this function any more, as they have all been converted to qemu_{create,configure}_nic_device(). Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
7db00af636
commit
09c292c9e4
2 changed files with 0 additions and 14 deletions
13
net/net.c
13
net/net.c
|
@ -992,19 +992,6 @@ int qemu_show_nic_models(const char *arg, const char *const *models)
|
|||
return 1;
|
||||
}
|
||||
|
||||
void qemu_check_nic_model(NICInfo *nd, const char *model)
|
||||
{
|
||||
const char *models[2];
|
||||
|
||||
models[0] = model;
|
||||
models[1] = NULL;
|
||||
|
||||
if (qemu_show_nic_models(nd->model, models))
|
||||
exit(0);
|
||||
if (qemu_find_nic_model(nd, models, model) < 0)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int qemu_find_nic_model(NICInfo *nd, const char * const *models,
|
||||
const char *default_model)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue