|
@@ -63,7 +63,7 @@ static inline int rsi_create_kthread(struct rsi_common *common,
|
|
|
u8 *name)
|
|
|
{
|
|
|
init_completion(&thread->completion);
|
|
|
- thread->task = kthread_run(func_ptr, common, name);
|
|
|
+ thread->task = kthread_run(func_ptr, common, "%s", name);
|
|
|
if (IS_ERR(thread->task))
|
|
|
return (int)PTR_ERR(thread->task);
|
|
|
|