[PATCH] ARM: dts: ux500: Harmonize GPIO key names
Linus Walleij <[email protected]>
| Newsgroups | gmane.linux.drivers.devicetree,gmane.linux.ports.arm.kernel |
|---|---|
| Message-ID | <20260818-ux500-dts-golden-voldown-label-v1-1-3edd581b09df@kernel.org> |
U-Boot want to use the volume down key for activating fastboot mode, however the code there relies on using the key label, and this differs betweem Golden and the other devices, so harmonize this by using the same label as the other devices. Signed-off-by: Linus Walleij <[email protected]> --- arch/arm/boot/dts/st/ste-ux500-samsung-golden.dts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/st/ste-ux500-samsung-golden.dts b/arch/arm/boot/dts/st/ste-ux500-samsung-golden.dts index f736888474e7..12f5a13ec77e 100644 --- a/arch/arm/boot/dts/st/ste-ux500-samsung-golden.dts +++ b/arch/arm/boot/dts/st/ste-ux500-samsung-golden.dts @@ -391,21 +391,21 @@ gpio-keys { label = "GPIO Buttons"; volume-up { - label = "Volume Up"; + label = "VOL+"; /* GPIO67 (VOL_UP) */ gpios = <&gpio2 3 GPIO_ACTIVE_LOW>; linux,code = <KEY_VOLUMEUP>; }; volume-down { - label = "Volume Down"; + label = "VOL-"; /* GPIO92 (VOL_DOWN) */ gpios = <&gpio2 28 GPIO_ACTIVE_LOW>; linux,code = <KEY_VOLUMEDOWN>; }; home { - label = "Home"; + label = "HOME"; /* GPIO91 (HOME_KEY) */ gpios = <&gpio2 27 GPIO_ACTIVE_LOW>; linux,code = <KEY_HOMEPAGE>; --- base-commit: 8d3ae59288f1e7d58d76558a6ee96d533bc5019f change-id: 20260818-ux500-dts-golden-voldown-label-8bf2e7927c0f Best regards, -- Linus Walleij <[email protected]>