USB: gadget: langwell_udc.c: printk needs a (unsigned long long) cast for a dma_t

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Joe Perches 2010-06-10 19:20:43 -07:00 committed by Greg Kroah-Hartman
parent c48271e072
commit f7244ce653

View file

@ -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;