[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v4 5/6] hw/mips: use qemu_fdt_setprop_strings()
From: |
Alistair Francis |
Subject: |
Re: [PATCH v4 5/6] hw/mips: use qemu_fdt_setprop_strings() |
Date: |
Thu, 11 Aug 2022 08:07:58 +1000 |
On Wed, Aug 10, 2022 at 4:58 AM Ben Dooks <qemu@ben.fluff.org> wrote:
>
> Change to using qemu_fdt_setprop_strings() helper in hw/mips.
>
> Signed-off-by: Ben Dooks <qemu@ben.fluff.org>
> Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Alistair
> ---
> hw/mips/boston.c | 8 ++------
> 1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/hw/mips/boston.c b/hw/mips/boston.c
> index d2ab9da1a0..759f6daafe 100644
> --- a/hw/mips/boston.c
> +++ b/hw/mips/boston.c
> @@ -515,9 +515,6 @@ static const void *create_fdt(BostonState *s,
> MachineState *mc = s->mach;
> uint32_t platreg_ph, gic_ph, clk_ph;
> char *name, *gic_name, *platreg_name, *stdout_name;
> - static const char * const syscon_compat[2] = {
> - "img,boston-platform-regs", "syscon"
> - };
>
> fdt = create_device_tree(dt_size);
> if (!fdt) {
> @@ -608,9 +605,8 @@ static const void *create_fdt(BostonState *s,
> platreg_name = g_strdup_printf("/soc/system-controller@%" HWADDR_PRIx,
> memmap[BOSTON_PLATREG].base);
> qemu_fdt_add_subnode(fdt, platreg_name);
> - qemu_fdt_setprop_string_array(fdt, platreg_name, "compatible",
> - (char **)&syscon_compat,
> - ARRAY_SIZE(syscon_compat));
> + qemu_fdt_setprop_strings(fdt, platreg_name, "compatible",
> + "img,boston-platform-regs", "syscon");
> qemu_fdt_setprop_cells(fdt, platreg_name, "reg",
> memmap[BOSTON_PLATREG].base,
> memmap[BOSTON_PLATREG].size);
> --
> 2.35.1
>
>
- [PATCH v4 1/6] device_tree: add qemu_fdt_setprop_strings() helper, (continued)
- [PATCH v4 1/6] device_tree: add qemu_fdt_setprop_strings() helper, Ben Dooks, 2022/08/09
- [PATCH v4 3/6] hw/riscv: use qemu_fdt_setprop_strings() for string arrays, Ben Dooks, 2022/08/09
- [PATCH v4 2/6] hw/core: don't check return on qemu_fdt_setprop_string_array(), Ben Dooks, 2022/08/09
- [PATCH v4 5/6] hw/mips: use qemu_fdt_setprop_strings(), Ben Dooks, 2022/08/09
- [PATCH v4 4/6] hw/core: use qemu_fdt_setprop_strings(), Ben Dooks, 2022/08/09
- Re: add qemu_fdt_setprop_strings() and use it in most places, Ben Dooks, 2022/08/09
- Re: add qemu_fdt_setprop_strings() and use it in most places, Peter Maydell, 2022/08/12