Skip to content

Commit

Permalink
USB: gadget: langwell_udc.c: printk needs a (unsigned long long) cast…
Browse files Browse the repository at this point in the history
… for a dma_t

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Joe Perches authored and Greg Kroah-Hartman committed Aug 10, 2010
1 parent c48271e commit f7244ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/usb/gadget/langwell_udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -842,9 +842,9 @@ static int langwell_ep_queue(struct usb_ep *_ep, struct usb_request *_req,
VDBG(dev, "req->mapped = 0\n");
}

DBG(dev, "%s queue req %p, len %u, buf %p, dma 0x%08x\n",
_ep->name,
_req, _req->length, _req->buf, _req->dma);
DBG(dev, "%s queue req %p, len %u, buf %p, dma 0x%08llx\n",
_ep->name,
_req, _req->length, _req->buf, (unsigned long long)_req->dma);

_req->status = -EINPROGRESS;
_req->actual = 0;
Expand Down

0 comments on commit f7244ce

Please sign in to comment.