[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <12767221022072@site>
Date: Wed, 16 Jun 2010 14:01:42 -0700
From: <gregkh@...e.de>
To: joe@...ches.com, dbrownell@...rs.sourceforge.net, gregkh@...e.de,
linux-kernel@...r.kernel.org, linux-usb@...r.kernel.org,
xiaochen.shen@...el.com
Subject: patch usb-gadget-langwell_udc.c-printk-needs-a-unsigned-long-long-cast-for-a-dma_t.patch added to gregkh-2.6 tree
This is a note to let you know that I've just added the patch titled
Subject: USB: gadget: langwell_udc.c: printk needs a (unsigned long long) cast for a dma_t
to my gregkh-2.6 tree. Its filename is
usb-gadget-langwell_udc.c-printk-needs-a-unsigned-long-long-cast-for-a-dma_t.patch
This tree can be found at
http://www.kernel.org/pub/linux/kernel/people/gregkh/gregkh-2.6/patches/
>From joe@...ches.com Wed Jun 16 13:30:08 2010
From: Joe Perches <joe@...ches.com>
Date: Thu, 10 Jun 2010 19:20:43 -0700
Subject: USB: gadget: langwell_udc.c: printk needs a (unsigned long long) cast for a dma_t
To: Xiaochen Shen <xiaochen.shen@...el.com>
Cc: David Brownell <dbrownell@...rs.sourceforge.net>, Greg Kroah-Hartman <gregkh@...e.de>, linux-usb <linux-usb@...r.kernel.org>, LKML <linux-kernel@...r.kernel.org>
Message-ID: <1276222843.1556.438.camel@...-Laptop.home>
Signed-off-by: Joe Perches <joe@...ches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@...e.de>
---
drivers/usb/gadget/langwell_udc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/drivers/usb/gadget/langwell_udc.c
+++ b/drivers/usb/gadget/langwell_udc.c
@@ -842,9 +842,9 @@ static int langwell_ep_queue(struct usb_
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;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists