mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-07 14:59:10 +00:00
pl050: Don't send always-constant is_mouse field
The is_mouse field of the pl050 state structure is constant (it tracks whether this is a 'pl050_keyboard' or 'pl050_mouse'), so there's no need to include it in the VMState structure. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 1363628480-29306-1-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
591f73f642
commit
e8945b4f2a
@ -24,14 +24,13 @@ typedef struct {
|
|||||||
|
|
||||||
static const VMStateDescription vmstate_pl050 = {
|
static const VMStateDescription vmstate_pl050 = {
|
||||||
.name = "pl050",
|
.name = "pl050",
|
||||||
.version_id = 1,
|
.version_id = 2,
|
||||||
.minimum_version_id = 1,
|
.minimum_version_id = 2,
|
||||||
.fields = (VMStateField[]) {
|
.fields = (VMStateField[]) {
|
||||||
VMSTATE_UINT32(cr, pl050_state),
|
VMSTATE_UINT32(cr, pl050_state),
|
||||||
VMSTATE_UINT32(clk, pl050_state),
|
VMSTATE_UINT32(clk, pl050_state),
|
||||||
VMSTATE_UINT32(last, pl050_state),
|
VMSTATE_UINT32(last, pl050_state),
|
||||||
VMSTATE_INT32(pending, pl050_state),
|
VMSTATE_INT32(pending, pl050_state),
|
||||||
VMSTATE_INT32(is_mouse, pl050_state),
|
|
||||||
VMSTATE_END_OF_LIST()
|
VMSTATE_END_OF_LIST()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user