diff mbox series

timer: Fix timer_mod_anticipate() documentation

Message ID 20200920155042.400737-1-f4bug@amsat.org
State New
Headers show
Series timer: Fix timer_mod_anticipate() documentation | expand

Commit Message

Philippe Mathieu-Daudé Sept. 20, 2020, 3:50 p.m. UTC
timer_mod_anticipate() will be scaled to the timer unit,
which is not always nanosecond. Fix the documentation.

Fixes: add40e9777d ("timer: add timer_mod_anticipate*")
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 include/qemu/timer.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Richard Henderson Sept. 20, 2020, 10:57 p.m. UTC | #1
On 9/20/20 8:50 AM, Philippe Mathieu-Daudé wrote:
> timer_mod_anticipate() will be scaled to the timer unit,

> which is not always nanosecond. Fix the documentation.

> 

> Fixes: add40e9777d ("timer: add timer_mod_anticipate*")

> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>

> ---

>  include/qemu/timer.h | 2 +-

>  1 file changed, 1 insertion(+), 1 deletion(-)


Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~
Laurent Vivier Sept. 23, 2020, 5:13 p.m. UTC | #2
Le 20/09/2020 à 17:50, Philippe Mathieu-Daudé a écrit :
> timer_mod_anticipate() will be scaled to the timer unit,
> which is not always nanosecond. Fix the documentation.
> 
> Fixes: add40e9777d ("timer: add timer_mod_anticipate*")
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  include/qemu/timer.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/qemu/timer.h b/include/qemu/timer.h
> index 6a8b48b5a9d..1dc880e94e7 100644
> --- a/include/qemu/timer.h
> +++ b/include/qemu/timer.h
> @@ -679,7 +679,7 @@ void timer_mod(QEMUTimer *ts, int64_t expire_timer);
>  /**
>   * timer_mod_anticipate:
>   * @ts: the timer
> - * @expire_time: the expiry time in nanoseconds
> + * @expire_time: the expire time in the units associated with the timer
>   *
>   * Modify a timer to expire at @expire_time or the current time, whichever
>   * comes earlier, taking into account the scale associated with the timer.
> 

Applied to my trivial-patches branch.

Thanks,
Laurent
diff mbox series

Patch

diff --git a/include/qemu/timer.h b/include/qemu/timer.h
index 6a8b48b5a9d..1dc880e94e7 100644
--- a/include/qemu/timer.h
+++ b/include/qemu/timer.h
@@ -679,7 +679,7 @@  void timer_mod(QEMUTimer *ts, int64_t expire_timer);
 /**
  * timer_mod_anticipate:
  * @ts: the timer
- * @expire_time: the expiry time in nanoseconds
+ * @expire_time: the expire time in the units associated with the timer
  *
  * Modify a timer to expire at @expire_time or the current time, whichever
  * comes earlier, taking into account the scale associated with the timer.