diff options
author | Andrew Jeffery <andrew@aj.id.au> | 2022-03-08 09:18:11 +0100 |
---|---|---|
committer | Cédric Le Goater <clg@kaod.org> | 2022-03-08 09:18:11 +0100 |
commit | 46179776c292f83848df90de60da5ae1a965ce6a (patch) | |
tree | 84a2eb3b2e4f1196926ceb8f933b9796aea23c92 /hw/gpio/aspeed_gpio.c | |
parent | a20c54b1231dffa3fa0590905b67b2725138718e (diff) | |
download | qemu-46179776c292f83848df90de60da5ae1a965ce6a.zip qemu-46179776c292f83848df90de60da5ae1a965ce6a.tar.gz qemu-46179776c292f83848df90de60da5ae1a965ce6a.tar.bz2 |
hw: aspeed_gpio: Cleanup stray semicolon after switch
Not sure how that got there.
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Message-Id: <20220207150409.358888-2-andrew@aj.id.au>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'hw/gpio/aspeed_gpio.c')
-rw-r--r-- | hw/gpio/aspeed_gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/gpio/aspeed_gpio.c b/hw/gpio/aspeed_gpio.c index 911d21c..c63634d 100644 --- a/hw/gpio/aspeed_gpio.c +++ b/hw/gpio/aspeed_gpio.c @@ -571,7 +571,7 @@ static uint64_t aspeed_gpio_read(void *opaque, hwaddr offset, uint32_t size) qemu_log_mask(LOG_GUEST_ERROR, "%s: no getter for offset 0x%" HWADDR_PRIx"\n", __func__, offset); return 0; - }; + } } static void aspeed_gpio_write(void *opaque, hwaddr offset, uint64_t data, |