aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-09-26 18:01:49 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-09-26 18:01:49 +0000
commitc4a62e1deb092ff03197d64199025d99dbd59ec0 (patch)
treed4d05751b72f20f943948a23032e12107773c20d /target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch
parentf4ca3486cb50d4740ab0a38ed2d9481e7d833b76 (diff)
downloadmaster-187ad058-c4a62e1deb092ff03197d64199025d99dbd59ec0.tar.gz
master-187ad058-c4a62e1deb092ff03197d64199025d99dbd59ec0.tar.bz2
master-187ad058-c4a62e1deb092ff03197d64199025d99dbd59ec0.zip
kernel/3.10: add '003-11-' prefix for patches backported from 3.11
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38217 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch')
-rw-r--r--target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch b/target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch
new file mode 100644
index 0000000000..04866edbcd
--- /dev/null
+++ b/target/linux/generic/patches-3.10/003-11-004-hso-Earlier-catch-of-error-condition.patch
@@ -0,0 +1,42 @@
+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] hso: Earlier catch of error condition
+
+commit 35e57e1b49a351aa804dab6010cd46ae6112a541 upstream.
+
+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
+@@ -2886,6 +2886,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
+@@ -2895,10 +2900,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)