summaryrefslogtreecommitdiff
path: root/libre/linux-libre-pck
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-09-21 11:48:23 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-09-21 11:48:23 -0300
commitf8c213bbe9a3ee49f81f586431b494539933d57f (patch)
treea8ed47945715ba142684b1c35db5b9a7a0ed421d /libre/linux-libre-pck
parent0abaaca3731d817f96fc5496846b263f55be9978 (diff)
linux-libre-pck: remove useless patches
Diffstat (limited to 'libre/linux-libre-pck')
-rw-r--r--libre/linux-libre-pck/0001-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch39
-rw-r--r--libre/linux-libre-pck/0002-fix-Atmel-maXTouch-touchscreen-support.patch37
2 files changed, 0 insertions, 76 deletions
diff --git a/libre/linux-libre-pck/0001-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch b/libre/linux-libre-pck/0001-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch
deleted file mode 100644
index e9de435fd..000000000
--- a/libre/linux-libre-pck/0001-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 716120e8010a7f400c6bed7384000e95e1465c94 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ky=C3=B6sti=20M=C3=A4lkki?= <kyosti.malkki@gmail.com>
-Date: Mon, 26 Aug 2013 19:19:44 +0300
-Subject: [PATCH 1/2] usb serial gadget: no TTY hangup on USB disconnect [WIP]
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-We may want to maintain the TTY over USB disconnects.
-
-This is useful when we have a terminal console to a host which
-power-cycles or for other reasons resets the USB host controller.
-
-Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
----
- drivers/usb/gadget/function/u_serial.c | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/drivers/usb/gadget/function/u_serial.c b/drivers/usb/gadget/function/u_serial.c
-index b369292..d156a28 100644
---- a/drivers/usb/gadget/function/u_serial.c
-+++ b/drivers/usb/gadget/function/u_serial.c
-@@ -1258,8 +1258,13 @@ void gserial_disconnect(struct gserial *gser)
- gser->ioport = NULL;
- if (port->port.count > 0 || port->openclose) {
- wake_up_interruptible(&port->drain_wait);
-+#if 0
- if (port->port.tty)
- tty_hangup(port->port.tty);
-+#else
-+ if (port->port.tty)
-+ stop_tty(port->port.tty);
-+#endif
- }
- spin_unlock_irqrestore(&port->port_lock, flags);
-
---
-1.8.1.1
-
diff --git a/libre/linux-libre-pck/0002-fix-Atmel-maXTouch-touchscreen-support.patch b/libre/linux-libre-pck/0002-fix-Atmel-maXTouch-touchscreen-support.patch
deleted file mode 100644
index 5ad26fc9e..000000000
--- a/libre/linux-libre-pck/0002-fix-Atmel-maXTouch-touchscreen-support.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From ab8cc1b2dc1b716d5c08f72dacbe1eded269f304 Mon Sep 17 00:00:00 2001
-From: André Silva <emulatorman@parabola.nu>
-Date: Tue, 22 Mar 2016 17:58:59 -0300
-Subject: [PATCH 2/2] fix Atmel maXTouch touchscreen support
-
-The Atmel maXTouch touchscreen works with Linux-libre 3.13-gnu,
-but not with the current longterm and mainline kernels in
-Parabola.
-
-Now it needs to load nonfree firmware in mxt_initialize(),
-which is in drivers/input/touchscreen/atmel_mxt_ts.c, and the
-atmel_mxt_ts driver fails to work.
-
-This driver works if changing reject_firmware_nowait to
-request_firmware_nowait in atmel_mxt_ts.c. This line is
-requesting the file named MXT_CFG_NAME, and it's a config file,
-not the firmware blob.
-
-Signed-off-by: André Silva <emulatorman@parabola.nu>
-Signed-off-by: mytbk <mytbk920423@gmail.com>
----
- drivers/input/touchscreen/atmel_mxt_ts.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c
-index 726a83e..d818834 100644
---- a/drivers/input/touchscreen/atmel_mxt_ts.c
-+++ b/drivers/input/touchscreen/atmel_mxt_ts.c
-@@ -1989,7 +1989,7 @@ static int mxt_initialize(struct mxt_data *data)
- if (error)
- goto err_free_object_table;
-
-- error = reject_firmware_nowait(THIS_MODULE, true, MXT_CFG_NAME,
-+ error = request_firmware_nowait(THIS_MODULE, true, MXT_CFG_NAME,
- &client->dev, GFP_KERNEL, data,
- mxt_config_cb);
- if (error) {