mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
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:
parent
c48271e072
commit
f7244ce653
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user