aboutsummaryrefslogtreecommitdiff
path: root/hw/omap.c
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-25 18:46:17 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-25 18:46:17 +0000
commit8ef6367ea928725652bde4cbde0a94d0b29fe773 (patch)
tree725049e1aa92a39a43e4a0f5977a1c2c0dcb9f82 /hw/omap.c
parent1f587329169765299448c1becd6a633a204ead29 (diff)
Scale TSC2102 touchscreen pressure value more realistically (still could be better).
PalmOS 5.2.1 now fully boots. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3741 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/omap.c')
-rw-r--r--hw/omap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/omap.c b/hw/omap.c
index a873b5fe54..c8d5064f63 100644
--- a/hw/omap.c
+++ b/hw/omap.c
@@ -4809,7 +4809,6 @@ static void omap_mpu_reset(void *opaque)
{
struct omap_mpu_state_s *mpu = (struct omap_mpu_state_s *) opaque;
- omap_clkm_reset(mpu);
omap_inth_reset(mpu->ih[0]);
omap_inth_reset(mpu->ih[1]);
omap_dma_reset(mpu->dma);
@@ -4843,6 +4842,7 @@ static void omap_mpu_reset(void *opaque)
omap_mcbsp_reset(mpu->mcbsp3);
omap_lpg_reset(mpu->led[0]);
omap_lpg_reset(mpu->led[1]);
+ omap_clkm_reset(mpu);
cpu_reset(mpu->env);
}