Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04304210 authored by Rusty Russell's avatar Rusty Russell Committed by Greg Kroah-Hartman
Browse files

usb: libusual kthread_run() called with wrong format.

parent b28884c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: "