diff options
author | Lukasz Majewski <l.majewski@samsung.com> | 2013-10-08 14:30:41 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-10-20 23:42:41 +0200 |
commit | d6eae7b0b172b3ef31a3f816ce946857f382ac4e (patch) | |
tree | 475ac79d07aec27e7b54d21dca7fc915fb36bdee /include | |
parent | 7b412ab31fe7957eabbfa86c131679fb244d7079 (diff) | |
download | u-boot-imx-d6eae7b0b172b3ef31a3f816ce946857f382ac4e.zip u-boot-imx-d6eae7b0b172b3ef31a3f816ce946857f382ac4e.tar.gz u-boot-imx-d6eae7b0b172b3ef31a3f816ce946857f382ac4e.tar.bz2 |
usb:g_dnl: Add name parameter to g_dnl_bind_fixup function
New parameter, namely *name has been added to g_dnl_bind_fixup().
It is necessary (for compatibility reasons) to assign new USB idProduct
and idVendor for different usb functions.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/g_dnl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/g_dnl.h b/include/g_dnl.h index b6c4dd4..de669fb 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); |