diff options
author | Jamin Lin <jamin_lin@aspeedtech.com> | 2025-01-24 11:02:48 +0800 |
---|---|---|
committer | Cédric Le Goater <clg@redhat.com> | 2025-01-27 09:38:15 +0100 |
commit | 668f29e1713b879fa32af213cc2820ea589034d0 (patch) | |
tree | 9129638b62459d1ae92fabfc5ed6a382e51406ac | |
parent | e90858464ab90e0e6aaede7f3c9d4750232b9755 (diff) | |
download | qemu-668f29e1713b879fa32af213cc2820ea589034d0.zip qemu-668f29e1713b879fa32af213cc2820ea589034d0.tar.gz qemu-668f29e1713b879fa32af213cc2820ea589034d0.tar.bz2 |
aspeed/wdt: 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/qemu-devel/20250124030249.1706996-2-jamin_lin@aspeedtech.com
Signed-off-by: Cédric Le Goater <clg@redhat.com>
-rw-r--r-- | hw/watchdog/wdt_aspeed.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hw/watchdog/wdt_aspeed.c b/hw/watchdog/wdt_aspeed.c index 81f5c51..22e94e7 100644 --- a/hw/watchdog/wdt_aspeed.c +++ b/hw/watchdog/wdt_aspeed.c @@ -278,7 +278,8 @@ static void aspeed_wdt_realize(DeviceState *dev, Error **errp) s->timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, aspeed_wdt_timer_expired, dev); - /* FIXME: This setting should be derived from the SCU hw strapping + /* + * FIXME: This setting should be derived from the SCU hw strapping * register SCU70 */ s->pclk_freq = PCLK_HZ; |