From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Luc Michel" <luc@lmichel.fr>,
"Havard Skinnemoen" <hskinnemoen@google.com>,
"Tyrone Ting" <kfting@nuvoton.com>
Subject: [RFC 4/4] hw/timer/npcm7xx_timer: Use new clock_ns_to_ticks()
Date: Mon, 1 Feb 2021 12:30:13 +0000 [thread overview]
Message-ID: <20210201123013.32308-5-peter.maydell@linaro.org> (raw)
In-Reply-To: <20210201123013.32308-1-peter.maydell@linaro.org>
Use the new clock_ns_to_ticks() function in npcm7xx_timer
where appropriate.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
hw/timer/npcm7xx_timer.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/timer/npcm7xx_timer.c b/hw/timer/npcm7xx_timer.c
index 36e2c07db26..fc48d494151 100644
--- a/hw/timer/npcm7xx_timer.c
+++ b/hw/timer/npcm7xx_timer.c
@@ -138,8 +138,8 @@ static int64_t npcm7xx_timer_count_to_ns(NPCM7xxTimer *t, uint32_t count)
/* Convert a time interval in nanoseconds to a timer cycle count. */
static uint32_t npcm7xx_timer_ns_to_count(NPCM7xxTimer *t, int64_t ns)
{
- return ns / clock_ticks_to_ns(t->ctrl->clock,
- npcm7xx_tcsr_prescaler(t->tcsr));
+ return clock_ns_to_ticks(t->ctrl->clock, ns) /
+ npcm7xx_tcsr_prescaler(t->tcsr);
}
static uint32_t npcm7xx_watchdog_timer_prescaler(const NPCM7xxWatchdogTimer *t)
--
2.20.1
next prev parent reply other threads:[~2021-02-01 12:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-01 12:30 [RFC 0/4] New APIs for the Clock framework Peter Maydell
2021-02-01 12:30 ` [RFC 1/4] clock: Add ClockEvent parameter to callbacks Peter Maydell
2021-02-02 21:26 ` Luc Michel
2021-02-01 12:30 ` [RFC 2/4] clock: Add ClockPreUpdate callback event type Peter Maydell
2021-02-01 12:30 ` [RFC 3/4] clock: Add clock_ns_to_ticks() function Peter Maydell
2021-02-03 20:51 ` Luc Michel
2021-02-01 12:30 ` Peter Maydell [this message]
2021-02-03 21:14 ` [RFC 0/4] New APIs for the Clock framework Luc Michel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210201123013.32308-5-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=edgar.iglesias@gmail.com \
--cc=f4bug@amsat.org \
--cc=hskinnemoen@google.com \
--cc=kfting@nuvoton.com \
--cc=luc@lmichel.fr \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).