aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2018-02-09 18:51:33 +0000
committerDavid Gibson <david@gibson.dropbear.id.au>2018-02-11 10:11:49 +1100
commiteb0788cb73a3eda37a97be74d186164b0c0b58d7 (patch)
tree53f63c01da93b34d2aa751b1f182b47da8cfa8b1 /hw
parent42a0938f92a842ed20b2ed4ce65231fca9b66f41 (diff)
downloadqemu-eb0788cb73a3eda37a97be74d186164b0c0b58d7.zip
qemu-eb0788cb73a3eda37a97be74d186164b0c0b58d7.tar.gz
qemu-eb0788cb73a3eda37a97be74d186164b0c0b58d7.tar.bz2
cuda: don't call cuda_update() when writing to ACR register
The wire protocol for reading data to/from the VIA is triggered by changing inputs on port B rather than changing the timer configuration via the ACR. Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw')
-rw-r--r--hw/misc/macio/cuda.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/misc/macio/cuda.c b/hw/misc/macio/cuda.c
index 7299052..355a2f2 100644
--- a/hw/misc/macio/cuda.c
+++ b/hw/misc/macio/cuda.c
@@ -407,7 +407,6 @@ static void cuda_write(void *opaque, hwaddr addr, uint64_t val, unsigned size)
case CUDA_REG_ACR:
s->acr = val;
cuda_timer_update(s, &s->timers[0], qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL));
- cuda_update(s);
break;
case CUDA_REG_PCR:
s->pcr = val;