[U-Boot] [PATCH] usb: lthor: Specify correct parameter for sizeof type

Lukasz Majewski l.majewski at samsung.com
Tue Nov 3 11:12:49 CET 2015


Hi Michal,

> This patch removes this warning:
>   CC      drivers/usb/gadget/f_thor.o
> drivers/usb/gadget/f_thor.c: In function ‘thor_tx_data’:
> drivers/usb/gadget/f_thor.c:572:2: warning: format ‘%d’ expects
> argument of type ‘int’, but argument 4 has type ‘long unsigned
> int’ [-Wformat=] debug("%s: dev->in_req->length:%d to_cpy:%d\n",
> __func__, ^
> 
> Signed-off-by: Michal Simek <michal.simek at xilinx.com>
> ---
> 
>  drivers/usb/gadget/f_thor.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/usb/gadget/f_thor.c b/drivers/usb/gadget/f_thor.c
> index ff1481ba3723..9ed0ce3d3132 100644
> --- a/drivers/usb/gadget/f_thor.c
> +++ b/drivers/usb/gadget/f_thor.c
> @@ -569,7 +569,7 @@ static void thor_tx_data(unsigned char *data, int
> len) 
>  	dev->in_req->length = len;
>  
> -	debug("%s: dev->in_req->length:%d to_cpy:%d\n", __func__,
> +	debug("%s: dev->in_req->length:%d to_cpy:%zd\n", __func__,
>  	      dev->in_req->length, sizeof(data));
>  
>  	status = usb_ep_queue(dev->in_ep, dev->in_req, 0);

Acked-by: Lukasz Majewski <l.majewski at samsung.com>

-- 
Best regards,

Lukasz Majewski

Samsung R&D Institute Poland (SRPOL) | Linux Platform Group


More information about the U-Boot mailing list