diff mbox

[U-Boot,2/2] usb: gadget: f_dfu: set serial number if serial# is valid

Message ID 20170222092238.1436-2-felipe.balbi@linux.intel.com
State Accepted
Commit 9bf9e813584c23b677e92d8dca742ae9ef27fc94
Delegated to: Ɓukasz Majewski
Headers show

Commit Message

Felipe Balbi Feb. 22, 2017, 9:22 a.m. UTC
With this patch, USB Command Verifier is happy with our DFU
implementation on Chapter 9 tests.

Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
---
 drivers/usb/gadget/f_dfu.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Lukasz Majewski Feb. 22, 2017, 12:08 p.m. UTC | #1
On Wed, 22 Feb 2017 11:22:38 +0200
Felipe Balbi <felipe.balbi@linux.intel.com> wrote:

> With this patch, USB Command Verifier is happy with our DFU
> implementation on Chapter 9 tests.
> 
> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
> ---
>  drivers/usb/gadget/f_dfu.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/usb/gadget/f_dfu.c b/drivers/usb/gadget/f_dfu.c
> index 64cdfa7c98ec..52a6a79ceefc 100644
> --- a/drivers/usb/gadget/f_dfu.c
> +++ b/drivers/usb/gadget/f_dfu.c
> @@ -691,6 +691,7 @@ static int dfu_bind(struct usb_configuration *c,
> struct usb_function *f) {
>  	struct usb_composite_dev *cdev = c->cdev;
>  	struct f_dfu *f_dfu = func_to_dfu(f);
> +	const char *s;
>  	int alt_num = dfu_get_alt_number();
>  	int rv, id, i;
>  
> @@ -724,6 +725,10 @@ static int dfu_bind(struct usb_configuration *c,
> struct usb_function *f) 
>  	cdev->req->context = f_dfu;
>  
> +	s = getenv("serial#");
> +	if (s)
> +		g_dnl_set_serialnumber((char *)s);
> +
>  error:
>  	return rv;
>  }

Acked-by: Lukasz Majewski <lukma@denx.de>

Tested-by: Lukasz Majewski <lukma@denx.de>

Test HW: BBB (am335x) - with tests/py/dfu
Test SW: test/py/dfu

I've applied it to u-boot-dfu tree.


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
diff mbox

Patch

diff --git a/drivers/usb/gadget/f_dfu.c b/drivers/usb/gadget/f_dfu.c
index 64cdfa7c98ec..52a6a79ceefc 100644
--- a/drivers/usb/gadget/f_dfu.c
+++ b/drivers/usb/gadget/f_dfu.c
@@ -691,6 +691,7 @@  static int dfu_bind(struct usb_configuration *c, struct usb_function *f)
 {
 	struct usb_composite_dev *cdev = c->cdev;
 	struct f_dfu *f_dfu = func_to_dfu(f);
+	const char *s;
 	int alt_num = dfu_get_alt_number();
 	int rv, id, i;
 
@@ -724,6 +725,10 @@  static int dfu_bind(struct usb_configuration *c, struct usb_function *f)
 
 	cdev->req->context = f_dfu;
 
+	s = getenv("serial#");
+	if (s)
+		g_dnl_set_serialnumber((char *)s);
+
 error:
 	return rv;
 }