diff options
author | Lukasz Majewski <l.majewski@samsung.com> | 2014-07-29 11:10:44 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-08-20 13:10:32 +0200 |
commit | 8fc171318e352ae191cdf527252e9166a56851ab (patch) | |
tree | 890e105c434cbff8bcf2a55e761086fce32e785e /board/samsung | |
parent | e49f14af1349eef94e41b636320bbfcace7403b5 (diff) | |
download | u-boot-imx-8fc171318e352ae191cdf527252e9166a56851ab.zip u-boot-imx-8fc171318e352ae191cdf527252e9166a56851ab.tar.gz u-boot-imx-8fc171318e352ae191cdf527252e9166a56851ab.tar.bz2 |
samsung: dfu: Provide correct Vendor and Product IDs for UMS gadget
It is necessary to provide the same Vendor and Product IDs as the one in
the original Linux kernel code.
Without this change the USB mass storage gadget is not working with Windows7.
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Acked-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung')
-rw-r--r-- | board/samsung/common/Makefile | 2 | ||||
-rw-r--r-- | board/samsung/common/gadget.c (renamed from board/samsung/common/thor.c) | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/board/samsung/common/Makefile b/board/samsung/common/Makefile index 41d0cc3..93347ef 100644 --- a/board/samsung/common/Makefile +++ b/board/samsung/common/Makefile @@ -6,7 +6,7 @@ # obj-$(CONFIG_SOFT_I2C_MULTI_BUS) += multi_i2c.o -obj-$(CONFIG_THOR_FUNCTION) += thor.o +obj-$(CONFIG_USBDOWNLOAD_GADGET) += gadget.o obj-$(CONFIG_MISC_COMMON) += misc.o ifndef CONFIG_SPL_BUILD diff --git a/board/samsung/common/thor.c b/board/samsung/common/gadget.c index 1c7630d..6a1e57f 100644 --- a/board/samsung/common/thor.c +++ b/board/samsung/common/gadget.c @@ -13,6 +13,9 @@ int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name) if (!strcmp(name, "usb_dnl_thor")) { put_unaligned(CONFIG_G_DNL_THOR_VENDOR_NUM, &dev->idVendor); put_unaligned(CONFIG_G_DNL_THOR_PRODUCT_NUM, &dev->idProduct); + } else if (!strcmp(name, "usb_dnl_ums")) { + put_unaligned(CONFIG_G_DNL_UMS_VENDOR_NUM, &dev->idVendor); + put_unaligned(CONFIG_G_DNL_UMS_PRODUCT_NUM, &dev->idProduct); } else { put_unaligned(CONFIG_G_DNL_VENDOR_NUM, &dev->idVendor); put_unaligned(CONFIG_G_DNL_PRODUCT_NUM, &dev->idProduct); |