hw/misc/imx_ccm.c: Add missing VMState list terminator
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
(cherry picked from commit ef493d5c29
)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
This commit is contained in:
parent
750f169519
commit
d56b0b85c8
|
@ -68,6 +68,7 @@ static const VMStateDescription vmstate_imx_ccm = {
|
||||||
VMSTATE_UINT32(pmcr0, IMXCCMState),
|
VMSTATE_UINT32(pmcr0, IMXCCMState),
|
||||||
VMSTATE_UINT32(pmcr1, IMXCCMState),
|
VMSTATE_UINT32(pmcr1, IMXCCMState),
|
||||||
VMSTATE_UINT32(pll_refclk_freq, IMXCCMState),
|
VMSTATE_UINT32(pll_refclk_freq, IMXCCMState),
|
||||||
|
VMSTATE_END_OF_LIST()
|
||||||
},
|
},
|
||||||
.post_load = imx_ccm_post_load,
|
.post_load = imx_ccm_post_load,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue