mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
usb: libusual kthread_run() called with wrong format.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
b28884c172
commit
043042109b
@ -135,7 +135,7 @@ static int usu_probe(struct usb_interface *intf,
|
||||
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: "
|
||||
|
Loading…
Reference in New Issue
Block a user