summaryrefslogtreecommitdiffstats
path: root/configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch
diff options
context:
space:
mode:
authorAlexander Dahl <post@lespocky.de>2017-07-17 23:47:15 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2017-07-18 07:58:49 +0200
commitbf0cb6f9e8b6181f56ce09477c3bf013928de467 (patch)
tree508a09b8b27038add500c181ccf22d791bfdda7a /configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch
parent37563ae7ff7efca84e084ed9ec53344726d46416 (diff)
downloadDistroKit-bf0cb6f9e8b6181f56ce09477c3bf013928de467.tar.gz
DistroKit-bf0cb6f9e8b6181f56ce09477c3bf013928de467.tar.xz
platform-rpi: kernel: remove old linux 4.4 patches
All patches have gone upstream. 0001 to 0013 are included from v4.5-rc1, 0014 is included from v4.6-rc1. Signed-off-by: Alexander Dahl <post@lespocky.de>
Diffstat (limited to 'configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch')
-rw-r--r--configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch b/configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch
deleted file mode 100644
index 7a4315d..0000000
--- a/configs/platform-rpi/patches/linux-4.4/0010-irqchip-bcm2836-make-code-more-readable.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From: Andrea Merello <andrea.merello@gmail.com>
-Date: Sat, 26 Dec 2015 13:47:24 -0800
-Subject: [PATCH] irqchip: bcm2836: make code more readable
-
-Avoid using hardcoded magics. We have a #define for this number.
-No functional changes.
-
-Signed-off-by: Andrea Merello <andrea.merello@gmail.com>
-Reviewed-by: Eric Anholt <eric@anholt.net>
-Signed-off-by: Eric Anholt <eric@anholt.net>
-Signed-off-by: Alexander Aring <alex.aring@gmail.com>
----
- drivers/irqchip/irq-bcm2836.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/irqchip/irq-bcm2836.c b/drivers/irqchip/irq-bcm2836.c
-index e314cce70201..6c9aaad0e4f1 100644
---- a/drivers/irqchip/irq-bcm2836.c
-+++ b/drivers/irqchip/irq-bcm2836.c
-@@ -167,7 +167,7 @@ __exception_irq_entry bcm2836_arm_irqchip_handle_irq(struct pt_regs *regs)
- u32 stat;
-
- stat = readl_relaxed(intc.base + LOCAL_IRQ_PENDING0 + 4 * cpu);
-- if (stat & 0x10) {
-+ if (stat & BIT(LOCAL_IRQ_MAILBOX0)) {
- #ifdef CONFIG_SMP
- void __iomem *mailbox0 = (intc.base +
- LOCAL_MAILBOX0_CLR0 + 16 * cpu);