summary refs log tree commit diff stats
path: root/hw/intc
diff options
context:
space:
mode:
authorAlexey Kardashevskiy <aik@ozlabs.ru>2013-09-26 16:18:41 +1000
committerAlexander Graf <agraf@suse.de>2013-10-25 23:25:47 +0200
commit456df19cf7fd7f6d9ce986a3fb8f7603df5c3b22 (patch)
tree31ca6fb49513ed9a66fb4991ef07478b387f7c75 /hw/intc
parentb45ff2d942022d7ee139a153f17f638d87935e03 (diff)
downloadfocaccia-qemu-456df19cf7fd7f6d9ce986a3fb8f7603df5c3b22.tar.gz
focaccia-qemu-456df19cf7fd7f6d9ce986a3fb8f7603df5c3b22.zip
xics: add missing const specifiers to TypeInfo
This adds missing const specifiers to ICS and ICP TypeInfo's.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/intc')
-rw-r--r--hw/intc/xics.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/intc/xics.c b/hw/intc/xics.c
index 76654db1d9..c90eb0aa12 100644
--- a/hw/intc/xics.c
+++ b/hw/intc/xics.c
@@ -248,7 +248,7 @@ static void icp_class_init(ObjectClass *klass, void *data)
     dc->vmsd = &vmstate_icp_server;
 }
 
-static TypeInfo icp_info = {
+static const TypeInfo icp_info = {
     .name = TYPE_ICP,
     .parent = TYPE_DEVICE,
     .instance_size = sizeof(ICPState),
@@ -503,7 +503,7 @@ static void ics_class_init(ObjectClass *klass, void *data)
     isc->post_load = ics_post_load;
 }
 
-static TypeInfo ics_info = {
+static const TypeInfo ics_info = {
     .name = TYPE_ICS,
     .parent = TYPE_DEVICE,
     .instance_size = sizeof(ICSState),