mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 21:32:52 +00:00
906709a151
The stub will be used on cases where sysbus.c is not compiled in (e.g. *-user). Note that code that uses NULL as the bus with qdev{_try,}_create() implicitly uses sysbus_get_default() as the bus, and will still require sysbus.c to be compiled in. Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
6 lines
83 B
C
6 lines
83 B
C
#include "hw/qdev-core.h"
|
|
|
|
BusState *sysbus_get_default(void)
|
|
{
|
|
return NULL;
|
|
}
|