mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 03:29:43 +00:00
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>
This commit is contained in:
parent
4a84e85413
commit
99638ba9d8
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user