aboutsummaryrefslogtreecommitdiff
path: root/hw/adc
diff options
context:
space:
mode:
authorHao Wu <wuhaotsh@google.com>2022-07-14 11:28:32 -0700
committerPeter Maydell <peter.maydell@linaro.org>2022-07-18 13:20:14 +0100
commit99638ba9d86b7707adabbf0b223a6e0ae144cd88 (patch)
treefbbd14a36b861f20931109d0b95bd286eae2907f /hw/adc
parent4a84e85413acaad9e84b64786e44e190080d78a6 (diff)
downloadqemu-99638ba9d86b7707adabbf0b223a6e0ae144cd88.zip
qemu-99638ba9d86b7707adabbf0b223a6e0ae144cd88.tar.gz
qemu-99638ba9d86b7707adabbf0b223a6e0ae144cd88.tar.bz2
hw/adc: Make adci[*] R/W in NPCM7XX ADC
Our sensor test requires both reading and writing from a sensor's QOM property. So we need to make the input of ADC module R/W instead of write only for that to work. Signed-off-by: Hao Wu <wuhaotsh@google.com> Reviewed-by: Titus Rwantare <titusr@google.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-id: 20220714182836.89602-5-wuhaotsh@google.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/adc')
-rw-r--r--hw/adc/npcm7xx_adc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/adc/npcm7xx_adc.c b/hw/adc/npcm7xx_adc.c
index 47fb9e5..bc6f3f5 100644
--- a/hw/adc/npcm7xx_adc.c
+++ b/hw/adc/npcm7xx_adc.c
@@ -242,7 +242,7 @@ static void npcm7xx_adc_init(Object *obj)
for (i = 0; i < NPCM7XX_ADC_NUM_INPUTS; ++i) {
object_property_add_uint32_ptr(obj, "adci[*]",
- &s->adci[i], OBJ_PROP_FLAG_WRITE);
+ &s->adci[i], OBJ_PROP_FLAG_READWRITE);
}
object_property_add_uint32_ptr(obj, "vref",
&s->vref, OBJ_PROP_FLAG_WRITE);