35d08458a9
After previous Peter patch, they are redundant. This way we don't assign them except when needed. Once there, there were lots of case where the ".fields" indentation was wrong: .fields = (VMStateField []) { and .fields = (VMStateField []) { Change all the combinations to: .fields = (VMStateField[]){ The biggest problem (appart from aesthetics) was that checkpatch complained when we copy&pasted the code from one place to another. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
18 lines
523 B
C
18 lines
523 B
C
#include "hw/hw.h"
|
|
#include "hw/boards.h"
|
|
|
|
const VMStateDescription vmstate_moxie_cpu = {
|
|
.name = "cpu",
|
|
.version_id = 1,
|
|
.minimum_version_id = 1,
|
|
.fields = (VMStateField[]) {
|
|
VMSTATE_UINT32(flags, CPUMoxieState),
|
|
VMSTATE_UINT32_ARRAY(gregs, CPUMoxieState, 16),
|
|
VMSTATE_UINT32_ARRAY(sregs, CPUMoxieState, 256),
|
|
VMSTATE_UINT32(pc, CPUMoxieState),
|
|
VMSTATE_UINT32(cc_a, CPUMoxieState),
|
|
VMSTATE_UINT32(cc_b, CPUMoxieState),
|
|
VMSTATE_END_OF_LIST()
|
|
}
|
|
};
|