summary refs log tree commit diff stats
path: root/hw/omap_tap.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/omap_tap.c')
-rw-r--r--hw/omap_tap.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/omap_tap.c b/hw/omap_tap.c
index 1f18dddb22..e6852889ba 100644
--- a/hw/omap_tap.c
+++ b/hw/omap_tap.c
@@ -107,6 +107,7 @@ static CPUWriteMemoryFunc * const omap_tap_writefn[] = {
 void omap_tap_init(struct omap_target_agent_s *ta,
                 struct omap_mpu_state_s *mpu)
 {
-    omap_l4_attach(ta, 0, l4_register_io_memory(
-                            omap_tap_readfn, omap_tap_writefn, mpu));
+    omap_l4_attach(ta, 0, cpu_register_io_memory(
+                            omap_tap_readfn, omap_tap_writefn, mpu,
+                            DEVICE_NATIVE_ENDIAN));
 }