diff options
author | Lukasz Majewski <l.majewski@samsung.com> | 2013-09-17 15:58:23 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2013-09-24 17:51:36 +0200 |
commit | a6921adcf200b3f2b6fadd78f99ea99b0f362e9c (patch) | |
tree | 8a2f8f668d53321c561016e97b46d3a925223720 /drivers | |
parent | 69d6cbe748ae13e6b728d2c28616a8c54b07f9c2 (diff) | |
download | u-boot-imx-a6921adcf200b3f2b6fadd78f99ea99b0f362e9c.zip u-boot-imx-a6921adcf200b3f2b6fadd78f99ea99b0f362e9c.tar.gz u-boot-imx-a6921adcf200b3f2b6fadd78f99ea99b0f362e9c.tar.bz2 |
usb:g_dnl:dfu: Download gadget and DFU function code clean up
The download gadget code and DFU function lacks of proper declarations
for the case when a target board wants to use only one of available usb
functions.
Moreover the relevant declarations have been moved to consistent
localization (like <dfu.h>).
Signed-off-by: Lukasz Majewski <l.majewski@samsung.com>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/gadget/f_dfu.h | 3 | ||||
-rw-r--r-- | drivers/usb/gadget/g_dnl.c | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/gadget/f_dfu.h b/drivers/usb/gadget/f_dfu.h index 34a4dde..cc2c455 100644 --- a/drivers/usb/gadget/f_dfu.h +++ b/drivers/usb/gadget/f_dfu.h @@ -82,7 +82,4 @@ struct dfu_function_descriptor { __le16 wTransferSize; __le16 bcdDFUVersion; } __packed; - -/* configuration-specific linkup */ -int dfu_add(struct usb_configuration *c); #endif /* __F_DFU_H_ */ diff --git a/drivers/usb/gadget/g_dnl.c b/drivers/usb/gadget/g_dnl.c index 29d08a3..40868c0 100644 --- a/drivers/usb/gadget/g_dnl.c +++ b/drivers/usb/gadget/g_dnl.c @@ -15,7 +15,7 @@ #include <g_dnl.h> #include <usb_mass_storage.h> -#include "f_dfu.h" +#include <dfu.h> #include "gadget_chips.h" #include "composite.c" |