diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2015-10-21 11:10:16 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2017-01-10 10:18:12 +0100 |
commit | a930ca572a142dfccd8dc47286cf8b74e269e017 (patch) | |
tree | d055bc56cea6e2a868159df20b5c505c637deb26 /arch | |
parent | 085b2b82874f96cd644940754449ce0319f9f043 (diff) | |
download | u-boot-a930ca572a142dfccd8dc47286cf8b74e269e017.tar.gz u-boot-a930ca572a142dfccd8dc47286cf8b74e269e017.tar.xz u-boot-a930ca572a142dfccd8dc47286cf8b74e269e017.zip |
ARM: dts: zynq: replace gpio-key,wakeup with wakeup-source property
Though the keyboard driver for GPIO buttons(gpio-keys) will continue to
check for/support the legacy "gpio-key,wakeup" boolean property to
enable gpio buttons as wakeup source, "wakeup-source" is the new
standard binding.
This patch replaces the legacy "gpio-key,wakeup" with the unified
"wakeup-source" property in order to avoid any futher copy-paste
duplication.
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: "Sören Brinkmann" <soren.brinkmann@xilinx.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/dts/zynq-zc702.dts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/dts/zynq-zc702.dts b/arch/arm/dts/zynq-zc702.dts index 478e9fd4ef..2696e70a89 100644 --- a/arch/arm/dts/zynq-zc702.dts +++ b/arch/arm/dts/zynq-zc702.dts @@ -40,14 +40,14 @@ label = "sw14"; gpios = <&gpio0 12 0>; linux,code = <108>; /* down */ - gpio-key,wakeup; + wakeup-source; autorepeat; }; sw13 { label = "sw13"; gpios = <&gpio0 14 0>; linux,code = <103>; /* up */ - gpio-key,wakeup; + wakeup-source; autorepeat; }; }; |