ChangeSet 1.1517, 2003/12/08 13:28:46-08:00, david-b@pacbell.net [PATCH] USB: fix remove device after set_configuration If a device can't be configured, the current test9 code forgets to clean it out of sysfs. This resolves that issue, so the retry in usb_new_device() stands a chance of working. The enumeration code still doesn't handle such errors well, but at least this way that hub port can be used for another device. drivers/usb/core/usb.c | 1 + 1 files changed, 1 insertion(+) diff -Nru a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c --- a/drivers/usb/core/usb.c Wed Dec 10 16:47:58 2003 +++ b/drivers/usb/core/usb.c Wed Dec 10 16:47:58 2003 @@ -1120,6 +1120,7 @@ if (err) { dev_err(&dev->dev, "can't set config #%d, error %d\n", dev->config[0].desc.bConfigurationValue, err); + device_del(&dev->dev); goto fail; }