diff options
author | 2021-10-31 23:41:37 +0000 | |
---|---|---|
committer | 2021-11-15 14:07:54 +0100 | |
commit | 8e14b530f8c90346eab43c7b59b03ff9fec7d171 (patch) | |
tree | 7ecebe8c9e934ad1050bc45550b91230e88e6980 | |
parent | ARM: dts: exynos: Fix BCM4330 Bluetooth reset polarity in I9100 (diff) | |
download | wireguard-linux-8e14b530f8c90346eab43c7b59b03ff9fec7d171.tar.xz wireguard-linux-8e14b530f8c90346eab43c7b59b03ff9fec7d171.zip |
ARM: dts: exynos: Use interrupt for BCM4330 host wakeup in I9100
Switch away from using the deprecated 'host-wakeup-gpios' property,
and use a 'host-wakeup' interrupt instead, as suggested by the binding
documentation.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Link: https://lore.kernel.org/r/20211031234137.87070-2-paul@crapouillou.net
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
-rw-r--r-- | arch/arm/boot/dts/exynos4210-i9100.dts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/exynos4210-i9100.dts b/arch/arm/boot/dts/exynos4210-i9100.dts index 21b791150697..33894054b8b0 100644 --- a/arch/arm/boot/dts/exynos4210-i9100.dts +++ b/arch/arm/boot/dts/exynos4210-i9100.dts @@ -830,7 +830,10 @@ shutdown-gpios = <&gpl0 4 GPIO_ACTIVE_HIGH>; reset-gpios = <&gpl1 0 GPIO_ACTIVE_LOW>; device-wakeup-gpios = <&gpx3 1 GPIO_ACTIVE_HIGH>; - host-wakeup-gpios = <&gpx2 6 GPIO_ACTIVE_HIGH>; + + interrupt-parent = <&gpx2>; + interrupts = <6 IRQ_TYPE_EDGE_FALLING>; + interrupt-names = "host-wakeup"; }; }; |