From 5176d90acf4f9b9e495f5e0e42297205741b7c39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Juha=20Riihim=C3=A4ki?= Date: Tue, 31 Mar 2009 10:26:24 +0300 Subject: [PATCH] support vmstate save/load for the cm_fclken2_register --- hw/omap3.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/omap3.c b/hw/omap3.c index c2d96f6..f769585 100644 --- a/hw/omap3.c +++ b/hw/omap3.c @@ -3135,6 +3135,7 @@ static void omap3_cm_save_state(QEMUFile *f, void *opaque) qemu_put_be32(f, s->cm_clkstst_mpu); qemu_put_be32(f, s->cm_fclken1_core); + qemu_put_be32(f, s->cm_fclken2_core); qemu_put_be32(f, s->cm_fclken3_core); qemu_put_be32(f, s->cm_iclken1_core); qemu_put_be32(f, s->cm_iclken2_core); @@ -3254,6 +3255,7 @@ static int omap3_cm_load_state(QEMUFile *f, void *opaque, int version_id) s->cm_clkstst_mpu = qemu_get_be32(f); s->cm_fclken1_core = qemu_get_be32(f); + s->cm_fclken2_core = qemu_get_be32(f); s->cm_fclken3_core = qemu_get_be32(f); s->cm_iclken1_core = qemu_get_be32(f); s->cm_iclken2_core = qemu_get_be32(f); -- 1.7.9.5