Files
qemu-qemu/hw/usb/bus-stub.c
Philippe Mathieu-Daudé e202c1ffa1 MAINTAINERS: Remove my disfunctional emails
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>
2026-04-24 21:27:22 +02:00

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;
}