diff options
author | Jamin Lin <jamin_lin@aspeedtech.com> | 2024-12-04 16:44:49 +0800 |
---|---|---|
committer | Cédric Le Goater <clg@redhat.com> | 2024-12-11 07:25:53 +0100 |
commit | 0178d1198fa225c8ecce7ae52dee5854c2d13213 (patch) | |
tree | 2afd83d795d2897c3de129951f2e46cd886f468c /hw/arm | |
parent | b00ca20440e081a45f5c0a65faf97267a3c5446a (diff) | |
download | qemu-0178d1198fa225c8ecce7ae52dee5854c2d13213.zip qemu-0178d1198fa225c8ecce7ae52dee5854c2d13213.tar.gz qemu-0178d1198fa225c8ecce7ae52dee5854c2d13213.tar.bz2 |
hw/arm/aspeed: Fix coding style
Fix coding style issues from checkpatch.pl.
Signed-off-by: Jamin Lin <jamin_lin@aspeedtech.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Link: https://lore.kernel.org/r/20241204084453.610660-3-jamin_lin@aspeedtech.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/aspeed_ast2600.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/arm/aspeed_ast2600.c b/hw/arm/aspeed_ast2600.c index be3eb70..c40d3d8 100644 --- a/hw/arm/aspeed_ast2600.c +++ b/hw/arm/aspeed_ast2600.c @@ -541,7 +541,8 @@ static void aspeed_soc_ast2600_realize(DeviceState *dev, Error **errp) if (!sysbus_realize(SYS_BUS_DEVICE(&s->gpio), errp)) { return; } - aspeed_mmio_map(s, SYS_BUS_DEVICE(&s->gpio), 0, sc->memmap[ASPEED_DEV_GPIO]); + aspeed_mmio_map(s, SYS_BUS_DEVICE(&s->gpio), 0, + sc->memmap[ASPEED_DEV_GPIO]); sysbus_connect_irq(SYS_BUS_DEVICE(&s->gpio), 0, aspeed_soc_get_irq(s, ASPEED_DEV_GPIO)); |