summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hw/qdev.c1
-rw-r--r--hw/qdev.h3
2 files changed, 3 insertions, 1 deletions
diff --git a/hw/qdev.c b/hw/qdev.c
index 001c74ce0e..faecc767af 100644
--- a/hw/qdev.c
+++ b/hw/qdev.c
@@ -32,7 +32,6 @@
/* This is a nasty hack to allow passing a NULL bus to qdev_create. */
static BusState *main_system_bus;
-extern struct BusInfo system_bus_info;
static DeviceInfo *device_info_list;
diff --git a/hw/qdev.h b/hw/qdev.h
index 11744fa539..59ac8dc512 100644
--- a/hw/qdev.h
+++ b/hw/qdev.h
@@ -162,4 +162,7 @@ void qdev_prop_set_defaults(DeviceState *dev, Property *props);
void qdev_prop_register_compat(CompatProperty *props);
void qdev_prop_set_compat(DeviceState *dev);
+/* This is a nasty hack to allow passing a NULL bus to qdev_create. */
+extern struct BusInfo system_bus_info;
+
#endif