Commit f2bd2e76 authored by Johan Jonker's avatar Johan Jonker Committed by Heiko Stuebner
Browse files

arm64: dts: rockchip: fix adc-keys sub node names



Fix adc-keys sub node names on Rockchip boards,
so that they match with regex: '^button-'

Signed-off-by: default avatarJohan Jonker <jbx6244@gmail.com>
Link: https://lore.kernel.org/r/6a6a3603-5540-cacc-2672-c015af1ec684@gmail.com


Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
parent 942b35de
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -30,31 +30,31 @@ adc-keys {
		keyup-threshold-microvolt = <1800000>;
		poll-interval = <100>;

		esc-key {
		button-esc {
			label = "esc";
			linux,code = <KEY_ESC>;
			press-threshold-microvolt = <1310000>;
		};

		home-key {
		button-home {
			label = "home";
			linux,code = <KEY_HOME>;
			press-threshold-microvolt = <624000>;
		};

		menu-key {
		button-menu {
			label = "menu";
			linux,code = <KEY_MENU>;
			press-threshold-microvolt = <987000>;
		};

		vol-down-key {
		button-down {
			label = "volume down";
			linux,code = <KEY_VOLUMEDOWN>;
			press-threshold-microvolt = <300000>;
		};

		vol-up-key {
		button-up {
			label = "volume up";
			linux,code = <KEY_VOLUMEUP>;
			press-threshold-microvolt = <17000>;
+6 −6
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ adc-keys0 {
		poll-interval = <100>;
		keyup-threshold-microvolt = <1800000>;

		func-key {
		button-func {
			linux,code = <KEY_FN>;
			label = "function";
			press-threshold-microvolt = <18000>;
@@ -37,31 +37,31 @@ adc-keys1 {
		poll-interval = <100>;
		keyup-threshold-microvolt = <1800000>;

		esc-key {
		button-esc {
			linux,code = <KEY_MICMUTE>;
			label = "micmute";
			press-threshold-microvolt = <1130000>;
		};

		home-key {
		button-home {
			linux,code = <KEY_MODE>;
			label = "mode";
			press-threshold-microvolt = <901000>;
		};

		menu-key {
		button-menu {
			linux,code = <KEY_PLAY>;
			label = "play";
			press-threshold-microvolt = <624000>;
		};

		vol-down-key {
		button-down {
			linux,code = <KEY_VOLUMEDOWN>;
			label = "volume down";
			press-threshold-microvolt = <300000>;
		};

		vol-up-key {
		button-up {
			linux,code = <KEY_VOLUMEUP>;
			label = "volume up";
			press-threshold-microvolt = <18000>;
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ adc-keys {
		keyup-threshold-microvolt = <1800000>;
		poll-interval = <100>;

		recovery {
		button-recovery {
			label = "recovery";
			linux,code = <KEY_VENDOR>;
			press-threshold-microvolt = <17000>;
+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ adc-keys {
		keyup-threshold-microvolt = <1800000>;
		poll-interval = <100>;

		recovery {
		button-recovery {
			label = "Recovery";
			linux,code = <KEY_VENDOR>;
			press-threshold-microvolt = <18000>;
+1 −1
Original line number Diff line number Diff line
@@ -39,7 +39,7 @@ adc-keys {
		keyup-threshold-microvolt = <1800000>;
		poll-interval = <100>;

		recovery {
		button-recovery {
			label = "Recovery";
			linux,code = <KEY_VENDOR>;
			press-threshold-microvolt = <18000>;
Loading