diff options
author | Hauke Mehrtens <hauke@openwrt.org> | 2014-09-08 19:55:36 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@openwrt.org> | 2014-09-08 19:55:36 +0000 |
commit | b36f776369b11beba6711a014528a3fb62a2d887 (patch) | |
tree | 3fd4e9cde81de3736205474e7eddc43a2cd32a8a /target/linux/generic/patches-3.9/007-hso-Earlier-catch-of-error-condition.patch | |
parent | 2f47b07c14e4f9e6182a0943ccbc85a7c28997bd (diff) | |
download | upstream-b36f776369b11beba6711a014528a3fb62a2d887.tar.gz upstream-b36f776369b11beba6711a014528a3fb62a2d887.tar.bz2 upstream-b36f776369b11beba6711a014528a3fb62a2d887.zip |
kernel: drop 3.9 support
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42452 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.9/007-hso-Earlier-catch-of-error-condition.patch')
-rw-r--r-- | target/linux/generic/patches-3.9/007-hso-Earlier-catch-of-error-condition.patch | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/target/linux/generic/patches-3.9/007-hso-Earlier-catch-of-error-condition.patch b/target/linux/generic/patches-3.9/007-hso-Earlier-catch-of-error-condition.patch deleted file mode 100644 index 85cf75a3f5..0000000000 --- a/target/linux/generic/patches-3.9/007-hso-Earlier-catch-of-error-condition.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 35e57e1b49a351aa804dab6010cd46ae6112a541 Mon Sep 17 00:00:00 2001 -From: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us> -Date: Wed, 21 Aug 2013 01:43:07 -0700 -Subject: [PATCH 1/2] hso: Earlier catch of error condition - -There is no need to get an interface specification if we know it's the -wrong one. - -Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us> -Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - drivers/net/usb/hso.c | 9 +++++---- - 1 file changed, 5 insertions(+), 4 deletions(-) - ---- a/drivers/net/usb/hso.c -+++ b/drivers/net/usb/hso.c -@@ -2895,6 +2895,11 @@ static int hso_probe(struct usb_interfac - struct hso_shared_int *shared_int; - struct hso_device *tmp_dev = NULL; - -+ if (interface->cur_altsetting->desc.bInterfaceClass != 0xFF) { -+ dev_err(&interface->dev, "Not our interface\n"); -+ return -ENODEV; -+ } -+ - if_num = interface->altsetting->desc.bInterfaceNumber; - - /* Get the interface/port specification from either driver_info or from -@@ -2904,10 +2909,6 @@ static int hso_probe(struct usb_interfac - else - port_spec = hso_get_config_data(interface); - -- if (interface->cur_altsetting->desc.bInterfaceClass != 0xFF) { -- dev_err(&interface->dev, "Not our interface\n"); -- return -ENODEV; -- } - /* Check if we need to switch to alt interfaces prior to port - * configuration */ - if (interface->num_altsetting > 1) |