public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Michal Simek <michal.simek@xilinx.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] usb: udc: Fix warnings on 64-bit builds
Date: Tue, 8 Dec 2015 08:18:35 +0100	[thread overview]
Message-ID: <5666844B.2030905@xilinx.com> (raw)
In-Reply-To: <20151208075904.340faafb@amdc2363>

On 8.12.2015 07:59, Lukasz Majewski wrote:
> Hi Michal,
> 
>> Hi Marek and Lukasz,
>>
>> On 3.11.2015 11:14, Lukasz Majewski wrote:
>>> Hi Michal,
>>>
>>>> Cast u32 bit value to 64bit before recasting to 64bit pointer to
>>>> avoid pointer from integer cast size mismatch warnings.
>>>>
>>>> Warning log:
>>>> +../drivers/usb/gadget/udc/udc-core.c: In function
>>>> ?usb_gadget_unmap_request?:
>>>> +../drivers/usb/gadget/udc/udc-core.c:68:19: warning: cast to
>>>> pointer from integer of different size [-Wint-to-pointer-cast]
>>>>
>>>> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
>>>> ---
>>>>
>>>>  drivers/usb/gadget/udc/udc-core.c | 2 +-
>>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>>
>>>> diff --git a/drivers/usb/gadget/udc/udc-core.c
>>>> b/drivers/usb/gadget/udc/udc-core.c index
>>>> 875e998a82e3..326757b547fa 100644 ---
>>>> a/drivers/usb/gadget/udc/udc-core.c +++
>>>> b/drivers/usb/gadget/udc/udc-core.c @@ -65,7 +65,7 @@ void
>>>> usb_gadget_unmap_request(struct usb_gadget *gadget, if
>>>> (req->length == 0) return;
>>>>  
>>>> -	dma_unmap_single((void *)req->dma, req->length,
>>>> +	dma_unmap_single((void *)(uintptr_t)req->dma, req->length,
>>>>  			 is_in ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
>>>>  }
>>>>  EXPORT_SYMBOL_GPL(usb_gadget_unmap_request);
>>>
>>> Acked-by: Lukasz Majewski <l.majewski@samsung.com>
>>>
>>
>> Is this patch in any of your queue?
>>
>> Thanks,
>> Michal
>>
> 
> I can grab this to -dfu tree since I'm in the middle of preparing PR.
> 

Thanks,
Michal

  reply	other threads:[~2015-12-08  7:18 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-30 15:21 [U-Boot] [PATCH] usb: udc: Fix warnings on 64-bit builds Michal Simek
2015-11-03 10:14 ` Lukasz Majewski
2015-12-07 12:01   ` Michal Simek
2015-12-08  6:59     ` Lukasz Majewski
2015-12-08  7:18       ` Michal Simek [this message]
2015-12-09  9:33     ` Lukasz Majewski
2015-12-09  9:40       ` Michal Simek

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5666844B.2030905@xilinx.com \
    --to=michal.simek@xilinx.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox