mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
41 lines
1.5 KiB
Diff
41 lines
1.5 KiB
Diff
From 618bf9d2ad92d7f879029e9f308c5c798e345970 Mon Sep 17 00:00:00 2001
|
|
From: 6by9 <6by9@users.noreply.github.com>
|
|
Date: Mon, 19 Jun 2023 16:02:36 +0100
|
|
Subject: [PATCH] dtoverlays: Fix pitft[28|35] overlays for 6.1 driver change.
|
|
(#5508)
|
|
|
|
The overlays configured both irq-gpio and an interrupts/
|
|
interrupt-parent configuration for the stmpe MFD device.
|
|
|
|
irq-gpio was reworked in 6.1 and has issues with the configuration
|
|
as provided. Removing it and using the interrupts/interrupt-parent
|
|
configuration works fine, so do that.
|
|
|
|
See: https://forums.raspberrypi.com/viewtopic.php?t=351394
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
arch/arm/boot/dts/overlays/pitft28-resistive-overlay.dts | 1 -
|
|
arch/arm/boot/dts/overlays/pitft35-resistive-overlay.dts | 1 -
|
|
2 files changed, 2 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/pitft28-resistive-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/pitft28-resistive-overlay.dts
|
|
@@ -68,7 +68,6 @@
|
|
reg = <1>;
|
|
|
|
spi-max-frequency = <500000>;
|
|
- irq-gpio = <&gpio 24 0x2>; /* IRQF_TRIGGER_FALLING */
|
|
interrupts = <24 2>; /* high-to-low edge triggered */
|
|
interrupt-parent = <&gpio>;
|
|
interrupt-controller;
|
|
--- a/arch/arm/boot/dts/overlays/pitft35-resistive-overlay.dts
|
|
+++ b/arch/arm/boot/dts/overlays/pitft35-resistive-overlay.dts
|
|
@@ -68,7 +68,6 @@
|
|
reg = <1>;
|
|
|
|
spi-max-frequency = <500000>;
|
|
- irq-gpio = <&gpio 24 0x2>; /* IRQF_TRIGGER_FALLING */
|
|
interrupts = <24 2>; /* high-to-low edge triggered */
|
|
interrupt-parent = <&gpio>;
|
|
interrupt-controller;
|