libqemustub: sysbus_get_default() stub

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>
master
Eduardo Habkost 2012-12-05 14:49:09 -02:00 committed by Andreas Färber
parent 083a5f8731
commit 906709a151
2 changed files with 7 additions and 0 deletions

View File

@ -7,4 +7,5 @@ stub-obj-y += get-fd.o
stub-obj-y += set-fd-handler.o
stub-obj-y += reset.o
stub-obj-y += vmstate.o
stub-obj-y += sysbus.o
stub-obj-$(CONFIG_WIN32) += fd-register.o

6
stubs/sysbus.c Normal file
View File

@ -0,0 +1,6 @@
#include "hw/qdev-core.h"
BusState *sysbus_get_default(void)
{
return NULL;
}