aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch
diff options
context:
space:
mode:
authorStijn Tintel <stijn@linux-ipv6.be>2019-02-02 21:53:15 +0100
committerStijn Tintel <stijn@linux-ipv6.be>2019-02-06 07:39:39 +0200
commitc30f7f402f1be7a7917b3dd604ee32be8ed20716 (patch)
treec858e61a864a9409408cf3eb58b7e8800112c2e6 /target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch
parent12310f05b7b080b016ec515796be437f4cd30b62 (diff)
downloadupstream-c30f7f402f1be7a7917b3dd604ee32be8ed20716.tar.gz
upstream-c30f7f402f1be7a7917b3dd604ee32be8ed20716.tar.bz2
upstream-c30f7f402f1be7a7917b3dd604ee32be8ed20716.zip
brcm2708: drop 4.9 support
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Diffstat (limited to 'target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch')
-rw-r--r--target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch b/target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch
deleted file mode 100644
index 6c365cc8ea..0000000000
--- a/target/linux/brcm2708/patches-4.9/950-0013-pinctrl-bcm2835-Only-request-the-interrupts-listed-i.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 6b37913f47f5fbd2748ea9abfb9a17fcfb1b5d29 Mon Sep 17 00:00:00 2001
-From: Phil Elwell <phil@raspberrypi.org>
-Date: Thu, 26 Feb 2015 09:58:22 +0000
-Subject: [PATCH] pinctrl-bcm2835: Only request the interrupts listed in the
- DTB
-
-Although the GPIO controller can generate three interrupts (four counting
-the common one), the device tree files currently only specify two. In the
-absence of the third, simply don't register that interrupt (as opposed to
-registering 0), which has the effect of making it impossible to generate
-interrupts for GPIOs 46-53 which, since they share pins with the SD card
-interface, is unlikely to be a problem.
----
- drivers/pinctrl/bcm/pinctrl-bcm2835.c | 2 ++
- 1 file changed, 2 insertions(+)
-
---- a/drivers/pinctrl/bcm/pinctrl-bcm2835.c
-+++ b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
-@@ -1036,6 +1036,8 @@ static int bcm2835_pinctrl_probe(struct
- int len;
- char *name;
- pc->irq[i] = irq_of_parse_and_map(np, i);
-+ if (pc->irq[i] == 0)
-+ break;
- pc->irq_data[i].pc = pc;
- pc->irq_data[i].irqgroup = i;
-