Re: [PATCH 1/2] riscv: cpu: Rename EVENT_SPY to EVENT_SPY_SIMPLE

2023-09-05 Thread Simon Glass
On Tue, 5 Sept 2023 at 07:48, Marek Vasut 
wrote:
>
> Fix up cpu.c and align it with commit
> 6c4cad7438 ("event: Rename EVENT_SPY to EVENT_SPY_FULL")
>
> Signed-off-by: Marek Vasut 
> ---
> Cc: Chanho Park 
> Cc: Leo 
> Cc: Nikita Shubin 
> Cc: Padmarao Begari 
> Cc: Rick Chen 
> Cc: Simon Glass 
> Cc: Yu Chien Peter Lin 
> ---
>  arch/riscv/cpu/cpu.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Simon Glass 


[PATCH 1/2] riscv: cpu: Rename EVENT_SPY to EVENT_SPY_SIMPLE

2023-09-05 Thread Marek Vasut
Fix up cpu.c and align it with commit
6c4cad7438 ("event: Rename EVENT_SPY to EVENT_SPY_FULL")

Signed-off-by: Marek Vasut 
---
Cc: Chanho Park 
Cc: Leo 
Cc: Nikita Shubin 
Cc: Padmarao Begari 
Cc: Rick Chen 
Cc: Simon Glass 
Cc: Yu Chien Peter Lin 
---
 arch/riscv/cpu/cpu.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/riscv/cpu/cpu.c b/arch/riscv/cpu/cpu.c
index d64aa330f20..15beec29875 100644
--- a/arch/riscv/cpu/cpu.c
+++ b/arch/riscv/cpu/cpu.c
@@ -66,7 +66,7 @@ static inline bool supports_extension(char ext)
 #endif /* CONFIG_CPU */
 }
 
-static int riscv_cpu_probe(void *ctx, struct event *event)
+static int riscv_cpu_probe(void)
 {
 #ifdef CONFIG_CPU
int ret;
@@ -79,7 +79,7 @@ static int riscv_cpu_probe(void *ctx, struct event *event)
 
return 0;
 }
-EVENT_SPY(EVT_DM_POST_INIT_R, riscv_cpu_probe);
+EVENT_SPY_SIMPLE(EVT_DM_POST_INIT_R, riscv_cpu_probe);
 
 /*
  * This is called on secondary harts just after the IPI is init'd. Currently
@@ -96,7 +96,7 @@ int riscv_cpu_setup(void)
 {
int ret;
 
-   ret = riscv_cpu_probe(ctx, event);
+   ret = riscv_cpu_probe();
if (ret)
return ret;
 
-- 
2.40.1