diff options
Diffstat (limited to 'hw/misc/omap_tap.c')
-rw-r--r-- | hw/misc/omap_tap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/hw/misc/omap_tap.c b/hw/misc/omap_tap.c index 3f595e8..4d7fb7d 100644 --- a/hw/misc/omap_tap.c +++ b/hw/misc/omap_tap.c @@ -23,10 +23,9 @@ #include "hw/arm/omap.h" /* TEST-Chip-level TAP */ -static uint64_t omap_tap_read(void *opaque, hwaddr addr, - unsigned size) +static uint64_t omap_tap_read(void *opaque, hwaddr addr, unsigned size) { - struct omap_mpu_state_s *s = (struct omap_mpu_state_s *) opaque; + struct omap_mpu_state_s *s = opaque; if (size != 4) { return omap_badwidth_read32(opaque, addr); |