diff options
Diffstat (limited to 'hw/char/omap_uart.c')
-rw-r--r-- | hw/char/omap_uart.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/char/omap_uart.c b/hw/char/omap_uart.c index 0b91693602..88f20943e4 100644 --- a/hw/char/omap_uart.c +++ b/hw/char/omap_uart.c @@ -112,7 +112,8 @@ static void omap_uart_write(void *opaque, hwaddr addr, struct omap_uart_s *s = (struct omap_uart_s *) opaque; if (size == 4) { - return omap_badwidth_write8(opaque, addr, value); + omap_badwidth_write8(opaque, addr, value); + return; } switch (addr) { |