On 20 January 2012 10:53, Evgeny Voevodin <e.voevo...@samsung.com> wrote: > @@ -294,6 +304,14 @@ static const VMStateDescription vmstate_lan9118 = { > VMSTATE_INT32(rxp_offset, lan9118_state), > VMSTATE_INT32(rxp_size, lan9118_state), > VMSTATE_INT32(rxp_pad, lan9118_state), > + VMSTATE_UINT32(write_word_prev_offset, lan9118_state), > + VMSTATE_UINT32(write_word_n, lan9118_state), > + VMSTATE_UINT16(write_word_l, lan9118_state), > + VMSTATE_UINT16(write_word_h, lan9118_state), > + VMSTATE_UINT32(read_word_prev_offset, lan9118_state), > + VMSTATE_UINT32(read_word_n, lan9118_state), > + VMSTATE_UINT32(read_long, lan9118_state), > + VMSTATE_UINT32(mode_16bit, lan9118_state), > VMSTATE_END_OF_LIST()
You need to bump .version_id and make your new fields VMSTATE_UINT32(write_word_prev_offset, lan9118_state, 2), etc. -- PMM