diff options
author | Bin Meng <bmeng@tinylab.org> | 2022-10-24 15:28:02 +0800 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2022-10-24 13:41:10 +0200 |
commit | c1dadb8462ff5021218f2c1aa015594952f441ca (patch) | |
tree | b263025d7ce8b2da1406793b869388cc9aedeb6f /hw/timer | |
parent | fe8a7390c10c78b806211d7e36727c461d39a17f (diff) | |
download | qemu-c1dadb8462ff5021218f2c1aa015594952f441ca.zip qemu-c1dadb8462ff5021218f2c1aa015594952f441ca.tar.gz qemu-c1dadb8462ff5021218f2c1aa015594952f441ca.tar.bz2 |
treewide: Remove the unnecessary space before semicolon
%s/return ;/return;
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Christian Schoenebeck <qemu_oss@crudebyte.com>
Message-Id: <20221024072802.457832-1-bmeng@tinylab.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'hw/timer')
-rw-r--r-- | hw/timer/renesas_cmt.c | 2 | ||||
-rw-r--r-- | hw/timer/renesas_tmr.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/hw/timer/renesas_cmt.c b/hw/timer/renesas_cmt.c index 2e0fd21..69eabc6 100644 --- a/hw/timer/renesas_cmt.c +++ b/hw/timer/renesas_cmt.c @@ -57,7 +57,7 @@ static void update_events(RCMTState *cmt, int ch) if ((cmt->cmstr & (1 << ch)) == 0) { /* count disable, so not happened next event. */ - return ; + return; } next_time = cmt->cmcor[ch] - cmt->cmcnt[ch]; next_time *= NANOSECONDS_PER_SECOND; diff --git a/hw/timer/renesas_tmr.c b/hw/timer/renesas_tmr.c index d96002e..c15f654 100644 --- a/hw/timer/renesas_tmr.c +++ b/hw/timer/renesas_tmr.c @@ -67,18 +67,18 @@ static void update_events(RTMRState *tmr, int ch) int i, event; if (tmr->tccr[ch] == 0) { - return ; + return; } if (FIELD_EX8(tmr->tccr[ch], TCCR, CSS) == 0) { /* external clock mode */ /* event not happened */ - return ; + return; } if (FIELD_EX8(tmr->tccr[0], TCCR, CSS) == CSS_CASCADING) { /* cascading mode */ if (ch == 1) { tmr->next[ch] = none; - return ; + return; } diff[cmia] = concat_reg(tmr->tcora) - concat_reg(tmr->tcnt); diff[cmib] = concat_reg(tmr->tcorb) - concat_reg(tmr->tcnt); @@ -384,7 +384,7 @@ static void timer_events(RTMRState *tmr, int ch) tmr->tcorb[ch]) & 0xff; } else { if (ch == 1) { - return ; + return; } tcnt = issue_event(tmr, ch, 16, concat_reg(tmr->tcnt), |