All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo.
@ 2021-10-08  6:36 Shuuichirou Ishii
  2021-10-08  9:39 ` Alex Bennée
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Shuuichirou Ishii @ 2021-10-08  6:36 UTC (permalink / raw)
  To: rad, peter.maydell, qemu-arm; +Cc: qemu-devel, ishii.shuuichir

Signed-off-by: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com>
---
 hw/arm/sbsa-ref.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
index 509c5f09b4..358714bd3e 100644
--- a/hw/arm/sbsa-ref.c
+++ b/hw/arm/sbsa-ref.c
@@ -670,7 +670,7 @@ static void sbsa_ref_init(MachineState *machine)
     int n, sbsa_max_cpus;
 
     if (!cpu_type_valid(machine->cpu_type)) {
-        error_report("mach-virt: CPU type %s not supported", machine->cpu_type);
+        error_report("sbsa-ref: CPU type %s not supported", machine->cpu_type);
         exit(1);
     }
 
-- 
2.27.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo.
  2021-10-08  6:36 [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo Shuuichirou Ishii
@ 2021-10-08  9:39 ` Alex Bennée
  2021-10-08 10:59 ` wangyanan (Y)
  2021-10-18 19:48 ` Richard Henderson
  2 siblings, 0 replies; 4+ messages in thread
From: Alex Bennée @ 2021-10-08  9:39 UTC (permalink / raw)
  To: Shuuichirou Ishii; +Cc: peter.maydell, rad, qemu-devel, qemu-arm


Shuuichirou Ishii <ishii.shuuichir@fujitsu.com> writes:

> Signed-off-by: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com>
> ---
>  hw/arm/sbsa-ref.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
> index 509c5f09b4..358714bd3e 100644
> --- a/hw/arm/sbsa-ref.c
> +++ b/hw/arm/sbsa-ref.c
> @@ -670,7 +670,7 @@ static void sbsa_ref_init(MachineState *machine)
>      int n, sbsa_max_cpus;
>  
>      if (!cpu_type_valid(machine->cpu_type)) {
> -        error_report("mach-virt: CPU type %s not supported", machine->cpu_type);
> +        error_report("sbsa-ref: CPU type %s not supported", machine->cpu_type);
>          exit(1);
>      }

copy and paste detected ;-)

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo.
  2021-10-08  6:36 [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo Shuuichirou Ishii
  2021-10-08  9:39 ` Alex Bennée
@ 2021-10-08 10:59 ` wangyanan (Y)
  2021-10-18 19:48 ` Richard Henderson
  2 siblings, 0 replies; 4+ messages in thread
From: wangyanan (Y) @ 2021-10-08 10:59 UTC (permalink / raw)
  To: Shuuichirou Ishii; +Cc: peter.maydell, rad, qemu-devel, qemu-arm


On 2021/10/8 14:36, Shuuichirou Ishii wrote:
> Signed-off-by: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com>
> ---
>   hw/arm/sbsa-ref.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
> index 509c5f09b4..358714bd3e 100644
> --- a/hw/arm/sbsa-ref.c
> +++ b/hw/arm/sbsa-ref.c
> @@ -670,7 +670,7 @@ static void sbsa_ref_init(MachineState *machine)
>       int n, sbsa_max_cpus;
>   
>       if (!cpu_type_valid(machine->cpu_type)) {
> -        error_report("mach-virt: CPU type %s not supported", machine->cpu_type);
> +        error_report("sbsa-ref: CPU type %s not supported", machine->cpu_type);
>           exit(1);
>       }
>   
Reviewed-by: Yanan Wang <wangyanan55@huawei.com>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo.
  2021-10-08  6:36 [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo Shuuichirou Ishii
  2021-10-08  9:39 ` Alex Bennée
  2021-10-08 10:59 ` wangyanan (Y)
@ 2021-10-18 19:48 ` Richard Henderson
  2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2021-10-18 19:48 UTC (permalink / raw)
  To: Shuuichirou Ishii, rad, peter.maydell, qemu-arm; +Cc: qemu-devel

On 10/7/21 11:36 PM, Shuuichirou Ishii wrote:
> Signed-off-by: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com>
> ---
>   hw/arm/sbsa-ref.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
> index 509c5f09b4..358714bd3e 100644
> --- a/hw/arm/sbsa-ref.c
> +++ b/hw/arm/sbsa-ref.c
> @@ -670,7 +670,7 @@ static void sbsa_ref_init(MachineState *machine)
>       int n, sbsa_max_cpus;
>   
>       if (!cpu_type_valid(machine->cpu_type)) {
> -        error_report("mach-virt: CPU type %s not supported", machine->cpu_type);
> +        error_report("sbsa-ref: CPU type %s not supported", machine->cpu_type);
>           exit(1);
>       }

Queued to target-arm.next.

r~



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-18 19:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-08  6:36 [PATCH] hw/arm/sbsa-ref: Fixed cpu type error message typo Shuuichirou Ishii
2021-10-08  9:39 ` Alex Bennée
2021-10-08 10:59 ` wangyanan (Y)
2021-10-18 19:48 ` Richard Henderson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.