diff options
author | Giridhar Pemmasani <giri@lmc.cs.sunysb.edu> | 2006-05-30 10:12:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-06-21 18:04:14 -0400 |
commit | 3f8f4a18f4f76a67fe5b80da1d3a3940e41a14a8 (patch) | |
tree | 14f7408ac859d47187f03256c145238320c3b525 /drivers | |
parent | 1fbe75e12f0dd567c86533e13ba2605f3ecad2e1 (diff) |
[PATCH] usbcore: Fix broken RNDIS config selection
RNDIS devices don't get configured owing to a typo in
choose_configuration(). This patch from Giridhar Pemmasani fixes the
typo.
From: Giridhar Pemmasani <giri@lmc.cs.sunysb.edu>
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/core/hub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 89ebe6a23a90..f41c08946a52 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
@@ -1241,7 +1241,7 @@ static int choose_configuration(struct usb_device *udev) | |||
1241 | && desc->bInterfaceClass == USB_CLASS_COMM | 1241 | && desc->bInterfaceClass == USB_CLASS_COMM |
1242 | && desc->bInterfaceSubClass == 2 | 1242 | && desc->bInterfaceSubClass == 2 |
1243 | && desc->bInterfaceProtocol == 0xff) { | 1243 | && desc->bInterfaceProtocol == 0xff) { |
1244 | #ifndef CONFIG_USB_NET_RNDIS | 1244 | #ifndef CONFIG_USB_NET_RNDIS_HOST |
1245 | continue; | 1245 | continue; |
1246 | #else | 1246 | #else |
1247 | best = c; | 1247 | best = c; |