[Qemu-devel] [PATCH] hw/m68k/mcf5208: Fix trivial typo in board description

Thomas Huth posted 1 patch 7 years, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180429094002.3293c9de@thl530.multi.box
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test s390x passed
hw/m68k/mcf5208.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[Qemu-devel] [PATCH] hw/m68k/mcf5208: Fix trivial typo in board description
Posted by Thomas Huth 7 years, 6 months ago
It's the MCF5208 evaluation board, not the MCF5206 eval board.

Signed-off-by: Thomas Huth <huth@tuxfamily.org>
---
 hw/m68k/mcf5208.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/m68k/mcf5208.c b/hw/m68k/mcf5208.c
index 7aca58542e..ae3dcc98c3 100644
--- a/hw/m68k/mcf5208.c
+++ b/hw/m68k/mcf5208.c
@@ -315,7 +315,7 @@ static void mcf5208evb_init(MachineState *machine)
 
 static void mcf5208evb_machine_init(MachineClass *mc)
 {
-    mc->desc = "MCF5206EVB";
+    mc->desc = "MCF5208EVB";
     mc->init = mcf5208evb_init;
     mc->is_default = 1;
     mc->default_cpu_type = M68K_CPU_TYPE_NAME("m5208");
-- 
2.14.3

Re: [Qemu-devel] [PATCH] hw/m68k/mcf5208: Fix trivial typo in board description
Posted by Laurent Vivier 7 years, 6 months ago
Le 29/04/2018 à 09:40, Thomas Huth a écrit :
> It's the MCF5208 evaluation board, not the MCF5206 eval board.
> 
> Signed-off-by: Thomas Huth <huth@tuxfamily.org>
> ---
>  hw/m68k/mcf5208.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/m68k/mcf5208.c b/hw/m68k/mcf5208.c
> index 7aca58542e..ae3dcc98c3 100644
> --- a/hw/m68k/mcf5208.c
> +++ b/hw/m68k/mcf5208.c
> @@ -315,7 +315,7 @@ static void mcf5208evb_init(MachineState *machine)
>  
>  static void mcf5208evb_machine_init(MachineClass *mc)
>  {
> -    mc->desc = "MCF5206EVB";
> +    mc->desc = "MCF5208EVB";
>      mc->init = mcf5208evb_init;
>      mc->is_default = 1;
>      mc->default_cpu_type = M68K_CPU_TYPE_NAME("m5208");
> 

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