rc4030.c (330724977b10f5b92610817e8b7d1dfed122df87) | rc4030.c (63e6b5645021bb2b545a39f2896a42da5c300d9c) |
---|---|
1/* 2 * QEMU JAZZ RC4030 chipset 3 * 4 * Copyright (c) 2007-2013 Hervé Poussineau 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 554 unchanged lines hidden (view full) --- 563 564 return 0; 565} 566 567static const VMStateDescription vmstate_rc4030 = { 568 .name = "rc4030", 569 .version_id = 3, 570 .post_load = rc4030_post_load, | 1/* 2 * QEMU JAZZ RC4030 chipset 3 * 4 * Copyright (c) 2007-2013 Hervé Poussineau 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights --- 554 unchanged lines hidden (view full) --- 563 564 return 0; 565} 566 567static const VMStateDescription vmstate_rc4030 = { 568 .name = "rc4030", 569 .version_id = 3, 570 .post_load = rc4030_post_load, |
571 .fields = (VMStateField []) { | 571 .fields = (const VMStateField []) { |
572 VMSTATE_UINT32(config, rc4030State), 573 VMSTATE_UINT32(invalid_address_register, rc4030State), 574 VMSTATE_UINT32_2DARRAY(dma_regs, rc4030State, 8, 4), 575 VMSTATE_UINT32(dma_tl_base, rc4030State), 576 VMSTATE_UINT32(dma_tl_limit, rc4030State), 577 VMSTATE_UINT32(cache_maint, rc4030State), 578 VMSTATE_UINT32(remote_failed_address, rc4030State), 579 VMSTATE_UINT32(memory_failed_address, rc4030State), --- 175 unchanged lines hidden --- | 572 VMSTATE_UINT32(config, rc4030State), 573 VMSTATE_UINT32(invalid_address_register, rc4030State), 574 VMSTATE_UINT32_2DARRAY(dma_regs, rc4030State, 8, 4), 575 VMSTATE_UINT32(dma_tl_base, rc4030State), 576 VMSTATE_UINT32(dma_tl_limit, rc4030State), 577 VMSTATE_UINT32(cache_maint, rc4030State), 578 VMSTATE_UINT32(remote_failed_address, rc4030State), 579 VMSTATE_UINT32(memory_failed_address, rc4030State), --- 175 unchanged lines hidden --- |