From: Eric Auger <eauger@redhat.com>
To: Jean-Philippe Brucker <jean-philippe@linaro.org>,
peter.maydell@linaro.org
Cc: qemu-arm@nongnu.org, qemu-devel@nongnu.org, robh+dt@kernel.org
Subject: Re: [PATCH v2 4/8] hw/arm/virt: Fix devicetree warning about the gpio-key node
Date: Tue, 27 Sep 2022 14:48:01 +0200 [thread overview]
Message-ID: <58ecf105-9767-25fd-6781-86dcf149bc31@redhat.com> (raw)
In-Reply-To: <20220927100347.176606-5-jean-philippe@linaro.org>
On 9/27/22 12:03, Jean-Philippe Brucker wrote:
> The node name of the gpio-key devicetree node should be "key-poweroff":
>
> gpio-keys: 'poweroff' does not match any of the regexes: '^(button|event|key|switch|(button|event|key|switch)-[a-z0-9-]+|[a-z0-9-]+-(button|event|key|switch))$', 'pinctrl-[0-9]+'
> From schema: linux/Documentation/devicetree/bindings/input/gpio-keys.yaml
>
> Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Eric
> ---
> hw/arm/virt.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/arm/virt.c b/hw/arm/virt.c
> index 8605f5058a..6805c57530 100644
> --- a/hw/arm/virt.c
> +++ b/hw/arm/virt.c
> @@ -932,12 +932,12 @@ static void create_gpio_keys(char *fdt, DeviceState *pl061_dev,
> qemu_fdt_add_subnode(fdt, "/gpio-keys");
> qemu_fdt_setprop_string(fdt, "/gpio-keys", "compatible", "gpio-keys");
>
> - qemu_fdt_add_subnode(fdt, "/gpio-keys/poweroff");
> - qemu_fdt_setprop_string(fdt, "/gpio-keys/poweroff",
> + qemu_fdt_add_subnode(fdt, "/gpio-keys/key-poweroff");
> + qemu_fdt_setprop_string(fdt, "/gpio-keys/key-poweroff",
> "label", "GPIO Key Poweroff");
> - qemu_fdt_setprop_cell(fdt, "/gpio-keys/poweroff", "linux,code",
> + qemu_fdt_setprop_cell(fdt, "/gpio-keys/key-poweroff", "linux,code",
> KEY_POWER);
> - qemu_fdt_setprop_cells(fdt, "/gpio-keys/poweroff",
> + qemu_fdt_setprop_cells(fdt, "/gpio-keys/key-poweroff",
> "gpios", phandle, 3, 0);
> }
>
next prev parent reply other threads:[~2022-09-27 16:40 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-27 10:03 [PATCH v2 0/8] hw/arm/virt: Fix dt-schema warnings Jean-Philippe Brucker
2022-09-27 10:03 ` [PATCH v2 1/8] hw/arm/virt: Fix devicetree warning about the root node Jean-Philippe Brucker
2022-09-27 11:30 ` Peter Maydell
2022-09-27 12:48 ` Eric Auger
2022-09-27 10:03 ` [PATCH v2 2/8] hw/arm/virt: Fix devicetree warning about the GIC node Jean-Philippe Brucker
2022-09-27 11:33 ` Peter Maydell
2022-09-27 12:48 ` Eric Auger
2022-09-27 10:03 ` [PATCH v2 3/8] hw/arm/virt: Use "msi-map" devicetree property for PCI Jean-Philippe Brucker
2022-09-27 11:36 ` Peter Maydell
2022-09-27 12:48 ` Eric Auger
2022-09-27 10:03 ` [PATCH v2 4/8] hw/arm/virt: Fix devicetree warning about the gpio-key node Jean-Philippe Brucker
2022-09-27 11:56 ` Peter Maydell
2022-10-13 21:46 ` Rob Herring
2022-10-14 11:37 ` Peter Maydell
2022-09-27 12:48 ` Eric Auger [this message]
2022-09-27 10:03 ` [PATCH v2 5/8] hw/arm/virt: Fix devicetree warnings about the GPIO node Jean-Philippe Brucker
2022-09-27 11:25 ` Peter Maydell
2022-11-29 20:55 ` Rob Herring
2022-11-30 12:27 ` Peter Maydell
2022-09-27 10:03 ` [PATCH v2 6/8] hw/arm/virt: Fix devicetree warning about the SMMU node Jean-Philippe Brucker
2022-09-27 11:37 ` Peter Maydell
2022-09-27 13:24 ` Eric Auger
2022-09-27 10:03 ` [PATCH v2 7/8] hw/arm/virt: Fix devicetree warnings about the virtio-iommu node Jean-Philippe Brucker
2022-09-27 11:46 ` Peter Maydell
2022-09-27 14:35 ` Eric Auger
2022-10-21 14:33 ` Jean-Philippe Brucker
2022-10-24 10:44 ` Peter Maydell
2022-09-27 10:03 ` [PATCH v2 8/8] hw/arm/virt: Fix devicetree warnings about node names Jean-Philippe Brucker
2022-09-27 11:28 ` Peter Maydell
2022-10-13 21:27 ` Rob Herring
2022-09-29 16:53 ` [PATCH v2 0/8] hw/arm/virt: Fix dt-schema warnings Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=58ecf105-9767-25fd-6781-86dcf149bc31@redhat.com \
--to=eauger@redhat.com \
--cc=jean-philippe@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).