[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <200804210638.34304.rusty@rustcorp.com.au>
Date: Mon, 21 Apr 2008 06:38:34 +1000
From: Rusty Russell <rusty@...tcorp.com.au>
To: linux-kernel@...r.kernel.org
Cc: Greg Kroah-Hartman <gregkh@...e.de>,
linux-usb-devel@...ts.sourceforge.net,
mdharm-usb@...-eyed-alien.net
Subject: [PATCH] usb: libusual kthread_run() called with wrong format.
Signed-off-by: Rusty Russell <rusty@...tcorp.com.au>
---
drivers/usb/storage/libusual.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -r bf2ff23fda93 drivers/usb/storage/libusual.c
--- a/drivers/usb/storage/libusual.c Mon Apr 07 17:07:09 2008 +1000
+++ b/drivers/usb/storage/libusual.c Mon Apr 07 17:30:33 2008 +1000
@@ -134,7 +134,7 @@ static int usu_probe(struct usb_interfac
stat[type].fls |= USU_MOD_FL_THREAD;
spin_unlock_irqrestore(&usu_lock, flags);
- task = kthread_run(usu_probe_thread, (void*)type, "libusual_%d", type);
+ task = kthread_run(usu_probe_thread, (void*)type, "libusual_%ld", type);
if (IS_ERR(task)) {
rc = PTR_ERR(task);
printk(KERN_WARNING "libusual: "
--
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