diff options
| -rw-r--r-- | board/siemens/common/factoryset.c | 2 | ||||
| -rw-r--r-- | drivers/usb/gadget/g_dnl.c | 4 | ||||
| -rw-r--r-- | include/g_dnl.h | 2 | 
3 files changed, 4 insertions, 4 deletions
| diff --git a/board/siemens/common/factoryset.c b/board/siemens/common/factoryset.c index eda9141c5..fbe79973e 100644 --- a/board/siemens/common/factoryset.c +++ b/board/siemens/common/factoryset.c @@ -275,7 +275,7 @@ int factoryset_setenv(void)  	return ret;  } -int g_dnl_bind_fixup(struct usb_device_descriptor *dev) +int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)  {  	put_unaligned(factory_dat.usb_vendor_id, &dev->idVendor);  	put_unaligned(factory_dat.usb_product_id, &dev->idProduct); diff --git a/drivers/usb/gadget/g_dnl.c b/drivers/usb/gadget/g_dnl.c index 1aaf78f51..98560b8ab 100644 --- a/drivers/usb/gadget/g_dnl.c +++ b/drivers/usb/gadget/g_dnl.c @@ -126,7 +126,7 @@ static int g_dnl_config_register(struct usb_composite_dev *cdev)  }  __weak -int g_dnl_bind_fixup(struct usb_device_descriptor *dev) +int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)  {  	return 0;  } @@ -153,7 +153,7 @@ static int g_dnl_bind(struct usb_composite_dev *cdev)  	g_dnl_string_defs[1].id = id;  	device_desc.iProduct = id; -	g_dnl_bind_fixup(&device_desc); +	g_dnl_bind_fixup(&device_desc, cdev->driver->name);  	ret = g_dnl_config_register(cdev);  	if (ret)  		goto error; diff --git a/include/g_dnl.h b/include/g_dnl.h index b6c4dd4ac..de669fb85 100644 --- a/include/g_dnl.h +++ b/include/g_dnl.h @@ -10,7 +10,7 @@  #include <linux/usb/ch9.h>  #include <linux/usb/gadget.h> -int g_dnl_bind_fixup(struct usb_device_descriptor *); +int g_dnl_bind_fixup(struct usb_device_descriptor *, const char *);  int g_dnl_register(const char *s);  void g_dnl_unregister(void); |