mirror of https://gitee.com/openkylin/qemu.git
pxa2xx: fix vmstate_pxa2xx_i2c
vmstate_pxa2xx_i2c incorrectly recursed to itself instead of going to store slave device. Fix that stop stop qemu from segfaulting during savevm for pxa2xx-based devices. Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
aa9438d9f8
commit
f69866ea32
|
@ -1476,7 +1476,7 @@ static const VMStateDescription vmstate_pxa2xx_i2c = {
|
|||
VMSTATE_UINT8(ibmr, PXA2xxI2CState),
|
||||
VMSTATE_UINT8(data, PXA2xxI2CState),
|
||||
VMSTATE_STRUCT_POINTER(slave, PXA2xxI2CState,
|
||||
vmstate_pxa2xx_i2c, PXA2xxI2CSlaveState *),
|
||||
vmstate_pxa2xx_i2c_slave, PXA2xxI2CSlaveState *),
|
||||
VMSTATE_END_OF_LIST()
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue