brcm2708: remove linux 3.10 support
[openwrt.git] / target / linux / brcm2708 / patches-3.10 / 0102-lirc_rpi-Fix-return-from-incompatible-pointer-type-w.patch
diff --git a/target/linux/brcm2708/patches-3.10/0102-lirc_rpi-Fix-return-from-incompatible-pointer-type-w.patch b/target/linux/brcm2708/patches-3.10/0102-lirc_rpi-Fix-return-from-incompatible-pointer-type-w.patch
deleted file mode 100644 (file)
index d1ff6e3..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-From b80da4978ba9731cabeb3ab81fb15feca71a657d Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Du=C5=A1an=20Dragi=C4=87?= <dragic.dusan@gmail.com>
-Date: Wed, 25 Sep 2013 18:20:09 +0200
-Subject: [PATCH 102/196] lirc_rpi: Fix return from incompatible pointer type
- warnings
-
----
- drivers/staging/media/lirc/lirc_rpi.c | 8 ++++----
- 1 file changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/drivers/staging/media/lirc/lirc_rpi.c b/drivers/staging/media/lirc/lirc_rpi.c
-index 5bb0dfe..cb32042 100644
---- a/drivers/staging/media/lirc/lirc_rpi.c
-+++ b/drivers/staging/media/lirc/lirc_rpi.c
-@@ -63,13 +63,13 @@ static int gpio_in_pin = 18;
- /* set the default GPIO output pin */
- static int gpio_out_pin = 17;
- /* enable debugging messages */
--static int debug;
-+static bool debug;
- /* -1 = auto, 0 = active high, 1 = active low */
- static int sense = -1;
- /* use softcarrier by default */
--static int softcarrier = 1;
-+static bool softcarrier = 1;
- /* 0 = do not invert output, 1 = invert output */
--static int invert = 0;
-+static bool invert = 0;
- struct gpio_chip *gpiochip;
- struct irq_chip *irqchip;
-@@ -678,7 +678,7 @@ MODULE_PARM_DESC(gpio_in_pin, "GPIO input pin number of the BCM processor."
-                " Valid pin numbers are: 0, 1, 4, 8, 7, 9, 10, 11, 14, 15,"
-                " 17, 18, 21, 22, 23, 24, 25, default 18");
--module_param(sense, bool, S_IRUGO);
-+module_param(sense, int, S_IRUGO);
- MODULE_PARM_DESC(sense, "Override autodetection of IR receiver circuit"
-                " (0 = active high, 1 = active low )");
--- 
-1.9.1
-