Skip to content

Commit

Permalink
convert kaweth to use usb_reset_configuration()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Oliver Neukum authored and David S. Miller committed Oct 30, 2009
1 parent 43ab850 commit f0816ce
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions drivers/net/usb/kaweth.c
Original file line number Diff line number Diff line change
Expand Up @@ -471,16 +471,7 @@ static int kaweth_reset(struct kaweth_device *kaweth)
int result;

dbg("kaweth_reset(%p)", kaweth);
result = kaweth_control(kaweth,
usb_sndctrlpipe(kaweth->dev, 0),
USB_REQ_SET_CONFIGURATION,
0,
kaweth->dev->config[0].desc.bConfigurationValue,
0,
NULL,
0,
KAWETH_CONTROL_TIMEOUT);

result = usb_reset_configuration(kaweth->dev);
mdelay(10);

dbg("kaweth_reset() returns %d.",result);
Expand Down

0 comments on commit f0816ce

Please sign in to comment.