9
0
Fork 0

usb storage: fix driver name

We have to set the name in struct usb_driver, not the one
in struct driver_d which gets overwritten with usb_driver->name
during registration.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2012-05-23 16:02:30 +02:00
parent 5e490ffd5d
commit bd14edecaf
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ static struct usb_device_id usb_storage_usb_ids[] = {
***********************************************************************/
static struct usb_driver usb_storage_driver = {
.driver.name = "usb-storage",
.name = "usb-storage",
.id_table = usb_storage_usb_ids,
.probe = usb_stor_probe,
.disconnect = usb_stor_disconnect,