mirror of
https://github.com/qemu/qemu.git
synced 2026-07-08 17:46:17 +00:00
With retrospective, mentioning email in authorship wasn't really useful, more now than these addresses are dead: - f4bug@amsat.org - philmd@redhat.com Simply remove them. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Message-Id: <20260422080406.62638-3-philmd@linaro.org>
29 lines
601 B
C
29 lines
601 B
C
/*
|
|
* QEMU USB device emulation stubs
|
|
*
|
|
* Copyright (C) 2021 Philippe Mathieu-Daudé
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qemu/error-report.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/qapi-commands-machine.h"
|
|
#include "system/system.h"
|
|
#include "monitor/monitor.h"
|
|
#include "hw/usb/usb.h"
|
|
|
|
USBDevice *usbdevice_create(const char *driver)
|
|
{
|
|
error_report("Support for USB devices not built-in");
|
|
|
|
return NULL;
|
|
}
|
|
|
|
HumanReadableText *qmp_x_query_usb(Error **errp)
|
|
{
|
|
error_setg(errp, "Support for USB devices not built-in");
|
|
return NULL;
|
|
}
|