summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2017-08-15 15:30:18 +0100
committerPeter Maydell <peter.maydell@linaro.org>2017-08-15 17:42:02 +0100
commit72b384f4a7d1d120a2591fc2019cec6ae50d7998 (patch)
treef7bd41ebc4e46acad527274324a9fe607c95bdb8
parent4a2fdb78e794c1ad93aa9e160235d6a61a2125de (diff)
downloadqemu-72b384f4a7d1d120a2591fc2019cec6ae50d7998.tar.gz
mmio-interface: Mark as not user creatable
The mmio-interface device is not something we want to allow users to create on the command line: * it is intended as an implementation detail of the memory subsystem, which gets created and deleted by that subsystem on demand; it makes no sense to create it by hand on the command line * it uses a pointer property 'host_ptr' which can't be set on the command line Mark the device as not user_creatable to avoid confusion. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1502807418-9994-1-git-send-email-peter.maydell@linaro.org Reviewed-by: Thomas Huth <thuth@redhat.com>
-rw-r--r--hw/misc/mmio_interface.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/hw/misc/mmio_interface.c b/hw/misc/mmio_interface.c
index da154e5c95..894e9801cb 100644
--- a/hw/misc/mmio_interface.c
+++ b/hw/misc/mmio_interface.c
@@ -111,6 +111,11 @@ static void mmio_interface_class_init(ObjectClass *oc, void *data)
dc->realize = mmio_interface_realize;
dc->unrealize = mmio_interface_unrealize;
dc->props = mmio_interface_properties;
+ /* Reason: pointer property "host_ptr", and this device
+ * is an implementation detail of the memory subsystem,
+ * not intended to be created directly by the user.
+ */
+ dc->user_creatable = false;
}
static const TypeInfo mmio_interface_info = {