From patchwork Fri Jan 25 12:48:54 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [11/15] s390: Make typeinfo const Date: Fri, 25 Jan 2013 02:48:54 -0000 From: Alexander Graf X-Patchwork-Id: 215676 Message-Id: <1359118138-9367-12-git-send-email-agraf@suse.de> To: qemu-devel Cc: Blue Swirl , =?utf-8?q?Aur=C3=A9lien=20Jarno?= All TypeInfo definitions should be const. Signed-off-by: Alexander Graf --- hw/s390x/ipl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/s390x/ipl.c b/hw/s390x/ipl.c index 7cbbf99..86e8415 100644 --- a/hw/s390x/ipl.c +++ b/hw/s390x/ipl.c @@ -159,7 +159,7 @@ static void s390_ipl_class_init(ObjectClass *klass, void *data) dc->no_user = 1; } -static TypeInfo s390_ipl_info = { +static const TypeInfo s390_ipl_info = { .class_init = s390_ipl_class_init, .parent = TYPE_SYS_BUS_DEVICE, .name = "s390-ipl",