diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2013-03-17 17:44:47 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2013-03-17 17:44:47 +0000 |
commit | 7fb7377594887db99a2100adcddf3bd6394ef540 (patch) | |
tree | 6ead329409c9687ae617eba42f876653c07c315c /hw/qdev-core.h | |
parent | 8b758d0568a986d58c254b3c209691c82e0f82a1 (diff) | |
parent | f8b9fe249a706bfed61e0bb66c73394553696382 (diff) | |
download | qemu-7fb7377594887db99a2100adcddf3bd6394ef540.tar.gz qemu-7fb7377594887db99a2100adcddf3bd6394ef540.tar.bz2 qemu-7fb7377594887db99a2100adcddf3bd6394ef540.zip |
Merge branch 'arm-devs.next' of git://git.linaro.org/people/pmaydell/qemu-arm
* 'arm-devs.next' of git://git.linaro.org/people/pmaydell/qemu-arm:
xilinx_spips: QOM styling fixes
xilinx_spips: Add missing dual-bus snoop commands
xilinx_spips: Fix bus setup conditional check
xilinx_spips: Set unused IRQs to NULL
xilinx_zynq: added pl330 to machine model
pl330: Initial version
iov: Factor out hexdumper
hw/vexpress: Set reset values for daughterboard oscillators
hw/arm_sysctl: Implement SYS_CFG_OSC function
hw/vexpress: Pass voltage sensor properties to sysctl device
hw/arm_sysctl: Implement SYS_CFG_VOLT
qdev: Implement (variable length) array properties
hw/arm_sysctl: Convert from qdev init to instance_init
hw/arm_sysctl: Implement SYS_CFG_DVIMODE as a no-op
hw/arm_sysctl: Implement SYS_CFG_MUXFPGA writes as a no-op
hw/arm_sysctl: Handle SYS_CFGCTRL in a more structured way
hw/vexpress: Pass proc_id via VEDBoardInfo
Diffstat (limited to 'hw/qdev-core.h')
-rw-r--r-- | hw/qdev-core.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/qdev-core.h b/hw/qdev-core.h index 2486f36853..547fbc7e0d 100644 --- a/hw/qdev-core.h +++ b/hw/qdev-core.h @@ -175,6 +175,9 @@ struct Property { uint8_t bitnr; uint8_t qtype; int64_t defval; + int arrayoffset; + PropertyInfo *arrayinfo; + int arrayfieldsize; }; struct PropertyInfo { |