All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lukasz Majewski <l.majewski@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] usb: udc: Fix warnings on 64-bit builds
Date: Tue, 08 Dec 2015 07:59:04 +0100	[thread overview]
Message-ID: <20151208075904.340faafb@amdc2363> (raw)
In-Reply-To: <5665752C.5030105@monstr.eu>

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.

-- 
Best regards,

Lukasz Majewski

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

  reply	other threads:[~2015-12-08  6:59 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 [this message]
2015-12-08  7:18       ` Michal Simek
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=20151208075904.340faafb@amdc2363 \
    --to=l.majewski@samsung.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.