aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2016-02-25 10:14:05 +0000
committerJohn Crispin <blogic@openwrt.org>2016-02-25 10:14:05 +0000
commit19a174c9ff135ce7198f41d2226b92c646515d26 (patch)
tree68aa7d5a077cda7c29e257a9303631b48793b483 /target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch
parentddab8d8608f1f0676ca2155e0415cc59a142af02 (diff)
downloadmaster-187ad058-19a174c9ff135ce7198f41d2226b92c646515d26.tar.gz
master-187ad058-19a174c9ff135ce7198f41d2226b92c646515d26.tar.bz2
master-187ad058-19a174c9ff135ce7198f41d2226b92c646515d26.zip
brcm2708: remove linux 4.1 support
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48766 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch')
-rw-r--r--target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch b/target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch
deleted file mode 100644
index 531fb7be4d..0000000000
--- a/target/linux/brcm2708/patches-4.1/0212-rpi-ft5406-Use-interruptible-sleep-to-avoid-high-loa.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From a668e38a52a964834054ee19e6e11e28f71f4172 Mon Sep 17 00:00:00 2001
-From: popcornmix <popcornmix@gmail.com>
-Date: Fri, 6 Nov 2015 16:24:59 +0000
-Subject: [PATCH 212/222] rpi-ft5406: Use interruptible sleep to avoid high
- load reported
-
----
- drivers/input/touchscreen/rpi-ft5406.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/drivers/input/touchscreen/rpi-ft5406.c
-+++ b/drivers/input/touchscreen/rpi-ft5406.c
-@@ -65,7 +65,7 @@ static int ft5406_thread(void *arg)
- while(!kthread_should_stop())
- {
- // 60fps polling
-- msleep(17);
-+ msleep_interruptible(17);
- memcpy_fromio(&regs, ts->regs, sizeof(*ts->regs));
- writel(99, &ts->regs->num_points);
- // Do not output if theres no new information (num_points is 99)