| Submitter | Andreas Färber |
|---|---|
| Date | Jan. 8, 2013, 8:56 p.m. |
| Message ID | <1357678594-427-4-git-send-email-afaerber@suse.de> |
| Download | mbox | patch |
| Permalink | /patch/210536/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index ca2197e..7672c69 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -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 diff --git a/stubs/sysbus.c b/stubs/sysbus.c new file mode 100644 index 0000000..e134965 --- /dev/null +++ b/stubs/sysbus.c @@ -0,0 +1,6 @@ +#include "hw/qdev-core.h" + +BusState *sysbus_get_default(void) +{ + return NULL; +}