[PATCH v2 4/6] hw/arm/ax3000: Specify SoC name in header and variable
Kuan-Jui Chiu <[email protected]>
| Newsgroups | org.nongnu.qemu-devel |
|---|---|
| Message-ID | <[email protected]> |
Signed-off-by: Kuan-Jui Chiu <[email protected]> --- hw/arm/ax3000-boards.c | 2 +- hw/arm/ax3000-evk.c | 2 +- hw/arm/ax3000-soc.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/hw/arm/ax3000-boards.c b/hw/arm/ax3000-boards.c index 1b645b7f43..a499890317 100644 --- a/hw/arm/ax3000-boards.c +++ b/hw/arm/ax3000-boards.c @@ -1,5 +1,5 @@ /* - * Axiado Boards + * Axiado Ax3000 Boards * * Author: Kuan-Jui Chiu <[email protected]> * diff --git a/hw/arm/ax3000-evk.c b/hw/arm/ax3000-evk.c index f491de7521..adcad2f340 100644 --- a/hw/arm/ax3000-evk.c +++ b/hw/arm/ax3000-evk.c @@ -1,5 +1,5 @@ /* - * Axiado Evaluation Kit Emulation + * Axiado Ax3000 Evaluation Kit Emulation * * Author: Kuan-Jui Chiu <[email protected]> * diff --git a/hw/arm/ax3000-soc.c b/hw/arm/ax3000-soc.c index b5088b17f5..e0d268da65 100644 --- a/hw/arm/ax3000-soc.c +++ b/hw/arm/ax3000-soc.c @@ -229,7 +229,7 @@ static void ax3000_class_init(ObjectClass *oc, const void *data) sc->num_cpus = AX3000_NUM_CPUS; } -static const TypeInfo axiado_soc_types[] = { +static const TypeInfo ax3000_soc_types[] = { { .name = TYPE_AX3000_SOC, .parent = TYPE_SYS_BUS_DEVICE, @@ -240,4 +240,4 @@ static const TypeInfo axiado_soc_types[] = { } }; -DEFINE_TYPES(axiado_soc_types) +DEFINE_TYPES(ax3000_soc_types) -- 2.34.1