12e9493df9
hw/boards.h pulls in almost 60 headers. The less we include it into headers, the better. As a first step, drop superfluous inclusions, and downgrade some more to what's actually needed. Gets rid of just one inclusion into a header. Cc: Eduardo Habkost <ehabkost@redhat.com> Cc: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20190812052359.30071-23-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
20 lines
570 B
C
20 lines
570 B
C
#include "qemu/osdep.h"
|
|
#include "cpu.h"
|
|
#include "machine.h"
|
|
#include "migration/cpu.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()
|
|
}
|
|
};
|