aboutsummaryrefslogtreecommitdiff
path: root/hw/gpio
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2022-03-08 09:18:11 +0100
committerCédric Le Goater <clg@kaod.org>2022-03-08 09:18:11 +0100
commit46179776c292f83848df90de60da5ae1a965ce6a (patch)
tree84a2eb3b2e4f1196926ceb8f933b9796aea23c92 /hw/gpio
parenta20c54b1231dffa3fa0590905b67b2725138718e (diff)
downloadqemu-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')
-rw-r--r--hw/gpio/aspeed_gpio.c2
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,