diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-04-19 10:16:34 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-04-19 10:42:21 -0300 |
commit | 9c850ad991a1718c2deee5fadb1b8e51aba1f763 (patch) | |
tree | 5e8becb36240ec428d881f3e128cefdf10787947 /libre/linux-libre-pck/0002-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch | |
parent | 906e01119e6792354d9701d874930e7d570505df (diff) |
linux-libre-pck: remove unused patches
Diffstat (limited to 'libre/linux-libre-pck/0002-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch')
-rw-r--r-- | libre/linux-libre-pck/0002-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/libre/linux-libre-pck/0002-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch b/libre/linux-libre-pck/0002-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch deleted file mode 100644 index b241525c8..000000000 --- a/libre/linux-libre-pck/0002-usb-serial-gadget-no-TTY-hangup-on-USB-disconnect-WI.patch +++ /dev/null @@ -1,39 +0,0 @@ -From d2702eb8157f845c81b1a6049139f342f12db494 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 2/3] 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 - |