[PATCH] hw/timer: fix systick trace message

Samuel Tardieu posted 1 patch 8 months, 2 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240109184508.3189599-1-sam@rfc1149.net
hw/timer/trace-events | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] hw/timer: fix systick trace message
Posted by Samuel Tardieu 8 months, 2 weeks ago
Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
Fixes: ff68dacbc786 ("armv7m: Split systick out from NVIC")
---
 hw/timer/trace-events | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/timer/trace-events b/hw/timer/trace-events
index 3eccef83858..8145e18e3da 100644
--- a/hw/timer/trace-events
+++ b/hw/timer/trace-events
@@ -35,7 +35,7 @@ aspeed_timer_read(uint64_t offset, unsigned size, uint64_t value) "From 0x%" PRI
 
 # armv7m_systick.c
 systick_reload(void) "systick reload"
-systick_timer_tick(void) "systick reload"
+systick_timer_tick(void) "systick tick"
 systick_read(uint64_t addr, uint32_t value, unsigned size) "systick read addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
 systick_write(uint64_t addr, uint32_t value, unsigned size) "systick write addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
 
-- 
2.42.0
Re: [PATCH] hw/timer: fix systick trace message
Posted by Peter Maydell 8 months, 1 week ago
On Tue, 9 Jan 2024 at 18:45, Samuel Tardieu <sam@rfc1149.net> wrote:
>
> Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
> Fixes: ff68dacbc786 ("armv7m: Split systick out from NVIC")
> ---
>  hw/timer/trace-events | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>



Applied to target-arm.next, thanks.

-- PMM
Re: [PATCH] hw/timer: fix systick trace message
Posted by Laurent Vivier 8 months, 2 weeks ago
Le 09/01/2024 à 19:45, Samuel Tardieu a écrit :
> Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
> Fixes: ff68dacbc786 ("armv7m: Split systick out from NVIC")
> ---
>   hw/timer/trace-events | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/timer/trace-events b/hw/timer/trace-events
> index 3eccef83858..8145e18e3da 100644
> --- a/hw/timer/trace-events
> +++ b/hw/timer/trace-events
> @@ -35,7 +35,7 @@ aspeed_timer_read(uint64_t offset, unsigned size, uint64_t value) "From 0x%" PRI
>   
>   # armv7m_systick.c
>   systick_reload(void) "systick reload"
> -systick_timer_tick(void) "systick reload"
> +systick_timer_tick(void) "systick tick"
>   systick_read(uint64_t addr, uint32_t value, unsigned size) "systick read addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
>   systick_write(uint64_t addr, uint32_t value, unsigned size) "systick write addr 0x%" PRIx64 " data 0x%" PRIx32 " size %u"
>   

Reviewed-by: Laurent Vivier <laurent@vivier.eu>

Re: [PATCH] hw/timer: fix systick trace message
Posted by Philippe Mathieu-Daudé 8 months, 2 weeks ago
On 9/1/24 19:45, Samuel Tardieu wrote:
> Signed-off-by: Samuel Tardieu <sam@rfc1149.net>
> Fixes: ff68dacbc786 ("armv7m: Split systick out from NVIC")
> ---
>   hw/timer/trace-events | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>