diff mbox

hw/misc/imx_ccm.c: Add missing VMState list terminator

Message ID 1406045957-11127-1-git-send-email-peter.maydell@linaro.org
State Accepted
Commit ef493d5c291e4689d64ff4973915a7442109a5c5
Headers show

Commit Message

Peter Maydell July 22, 2014, 4:19 p.m. UTC
The VMStateDescription for the imx_ccm device was missing its
terminator. Found by static search of the codebase using
a regex based on one suggested by Ian Jackson:
  pcregrep -rMi '(?s)VMStateField(?:(?!END_OF_LIST).)*?;' $(git grep -l 'VMStateField\[\]')

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-stable@nongnu.org
---
Check prompted by Laszlo's recent patch, obviously. This plus
hcd-xhci.c are the only missing-terminator cases I found.

 hw/misc/imx_ccm.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox

Patch

diff --git a/hw/misc/imx_ccm.c b/hw/misc/imx_ccm.c
index 750b906..0920288 100644
--- a/hw/misc/imx_ccm.c
+++ b/hw/misc/imx_ccm.c
@@ -67,6 +67,7 @@  static const VMStateDescription vmstate_imx_ccm = {
         VMSTATE_UINT32(pmcr0, IMXCCMState),
         VMSTATE_UINT32(pmcr1, IMXCCMState),
         VMSTATE_UINT32(pll_refclk_freq, IMXCCMState),
+        VMSTATE_END_OF_LIST()
     },
     .post_load = imx_ccm_post_load,
 };