aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2018-03-02 10:45:38 +0000
committerPeter Maydell <peter.maydell@linaro.org>2018-03-02 11:03:45 +0000
commita7bc4ee528c66486e43e815429b4aaf8cf2049d5 (patch)
tree9609ad9d50f59948b509978b859328bbc6958464 /include
parentc7b26382fee8b745c6e903c85281babf30c2cb7c (diff)
downloadqemu-a7bc4ee528c66486e43e815429b4aaf8cf2049d5.zip
qemu-a7bc4ee528c66486e43e815429b4aaf8cf2049d5.tar.gz
qemu-a7bc4ee528c66486e43e815429b4aaf8cf2049d5.tar.bz2
hw/misc/unimp: Move struct to header file
Move the definition of the struct for the unimplemented-device from unimp.c to unimp.h, so that users can embed the struct in their own device structs if they prefer. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-id: 20180220180325.29818-10-peter.maydell@linaro.org
Diffstat (limited to 'include')
-rw-r--r--include/hw/misc/unimp.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/hw/misc/unimp.h b/include/hw/misc/unimp.h
index 52e068e..2a291ca 100644
--- a/include/hw/misc/unimp.h
+++ b/include/hw/misc/unimp.h
@@ -12,6 +12,16 @@
#define TYPE_UNIMPLEMENTED_DEVICE "unimplemented-device"
+#define UNIMPLEMENTED_DEVICE(obj) \
+ OBJECT_CHECK(UnimplementedDeviceState, (obj), TYPE_UNIMPLEMENTED_DEVICE)
+
+typedef struct {
+ SysBusDevice parent_obj;
+ MemoryRegion iomem;
+ char *name;
+ uint64_t size;
+} UnimplementedDeviceState;
+
/**
* create_unimplemented_device: create and map a dummy device
* @name: name of the device for debug logging