diff options
author | Bjørn Mork <bjorn@mork.no> | 2014-04-27 10:47:46 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-27 17:59:24 -0400 |
commit | 48292d8b0726412646086821656193dbc289ce4c (patch) | |
tree | 7c4d497624e67c3b3cc3f90e54bf16de4697c76e /drivers | |
parent | 8bc7a069402e1a443ded8088a8be0dc8aa1c2c9b (diff) |
usb: qcserial: remove interface number matching
Matching on interface numbers was not such a good idea
for multi-function serial devices after all. It is much
better do create well defined device layouts, allowing
a single match entry per device.
Remove this now unused code.
Signed-off-by: Bjørn Mork <bjorn@mork.no>
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/serial/qcserial.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/usb/serial/qcserial.c b/drivers/usb/serial/qcserial.c index 91e7bb515398..ca7b43092439 100644 --- a/drivers/usb/serial/qcserial.c +++ b/drivers/usb/serial/qcserial.c | |||
@@ -190,13 +190,6 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id) | |||
190 | 190 | ||
191 | } | 191 | } |
192 | 192 | ||
193 | /* allow any number of interfaces when doing direct interface match */ | ||
194 | if (id->match_flags & USB_DEVICE_ID_MATCH_INT_NUMBER) { | ||
195 | dev_dbg(dev, "Generic Qualcomm serial interface found\n"); | ||
196 | altsetting = 0; | ||
197 | goto done; | ||
198 | } | ||
199 | |||
200 | /* default to enabling interface */ | 193 | /* default to enabling interface */ |
201 | altsetting = 0; | 194 | altsetting = 0; |
202 | 195 | ||