tp驱动问题

在看goodix的tp驱动代码时,有加载驱动时加载配置文件的代码,代码如下:

    

     thread = kthread_run(guitar_update_proc, (void*)ts, "guitar_update");

    if (IS_ERR(thread))
    {
        dev_err(&client->dev, " failed to create update thread\n");

    }

我不明白的是:

如果guitar_update_proc执行过程中,出现失败,配置文件没有加载进去,

没法通知到主线程的。

你可能感兴趣的:(tp驱动问题)