diff options
author | Andreas Färber <afaerber@suse.de> | 2015-07-13 19:35:41 +0200 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2016-05-26 14:06:41 +0100 |
commit | a62c89117fa19adc6f9242844468ac31ec535d7e (patch) | |
tree | 3e84528da610a7584e9c35461ba7ca8f07003121 /tests | |
parent | c88c67e58b61618a904d2333ceebefc3c852d32e (diff) | |
download | qemu-a62c89117fa19adc6f9242844468ac31ec535d7e.tar.gz qemu-a62c89117fa19adc6f9242844468ac31ec535d7e.tar.bz2 qemu-a62c89117fa19adc6f9242844468ac31ec535d7e.zip |
qdev: Start disentangling bus from device
Move bus type and related APIs to a separate file bus.c.
This is a first step in breaking up qdev.c into more manageable chunks.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
[AF: Rebased onto osdep.h]
Signed-off-by: Andreas Färber <afaerber@suse.de>
[PMM: added bus.o to link line for test-qdev-global-props]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile index 1bbd1ca463..55463ed0b2 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -434,6 +434,7 @@ tests/test-rcu-list$(EXESUF): tests/test-rcu-list.o $(test-util-obj-y) tests/test-qdev-global-props$(EXESUF): tests/test-qdev-global-props.o \ hw/core/qdev.o hw/core/qdev-properties.o hw/core/hotplug.o\ + hw/core/bus.o \ hw/core/irq.o \ hw/core/fw-path-provider.o \ $(test-qapi-obj-y) |