diff options
author | Oliver Neukum <oliver@neukum.org> | 2009-10-29 01:07:12 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-30 02:06:39 -0400 |
commit | f0816ce39d8de7646301aac52cc7351a2424d97f (patch) | |
tree | 3bd98c6495654e6b33c676fd6c9c56bef3818570 /drivers/net/usb | |
parent | 43ab85021e8286e1641928ab3cc542dd1e8c7f94 (diff) |
convert kaweth to use usb_reset_configuration()
For USB 3.0 it is necessary that all drivers use the standard
API to reset a configuration. This removes a home-grown
implementation.
Signed-off-by: Oliver Neukum <oliver@neukum.org>
Hi David,
please take this for the next merge window.
Regards
Oliver
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb')
-rw-r--r-- | drivers/net/usb/kaweth.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/net/usb/kaweth.c b/drivers/net/usb/kaweth.c index e391ef969c28..3b80e8d2d621 100644 --- a/drivers/net/usb/kaweth.c +++ b/drivers/net/usb/kaweth.c | |||
@@ -471,16 +471,7 @@ static int kaweth_reset(struct kaweth_device *kaweth) | |||
471 | int result; | 471 | int result; |
472 | 472 | ||
473 | dbg("kaweth_reset(%p)", kaweth); | 473 | dbg("kaweth_reset(%p)", kaweth); |
474 | result = kaweth_control(kaweth, | 474 | result = usb_reset_configuration(kaweth->dev); |
475 | usb_sndctrlpipe(kaweth->dev, 0), | ||
476 | USB_REQ_SET_CONFIGURATION, | ||
477 | 0, | ||
478 | kaweth->dev->config[0].desc.bConfigurationValue, | ||
479 | 0, | ||
480 | NULL, | ||
481 | 0, | ||
482 | KAWETH_CONTROL_TIMEOUT); | ||
483 | |||
484 | mdelay(10); | 475 | mdelay(10); |
485 | 476 | ||
486 | dbg("kaweth_reset() returns %d.",result); | 477 | dbg("kaweth_reset() returns %d.",result); |