mirror of https://gitee.com/openkylin/linux.git
ti-st: st-kim: Dont let probe fail when debugfs is disabled
Signed-off-by: Robin van der Gracht <robin@protonic.nl> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4719ebfd89
commit
3768528af3
|
@ -778,7 +778,7 @@ static int kim_probe(struct platform_device *pdev)
|
|||
pr_info("sysfs entries created\n");
|
||||
|
||||
kim_debugfs_dir = debugfs_create_dir("ti-st", NULL);
|
||||
if (IS_ERR(kim_debugfs_dir)) {
|
||||
if (!kim_debugfs_dir) {
|
||||
pr_err(" debugfs entries creation failed ");
|
||||
err = -EIO;
|
||||
goto err_debugfs_dir;
|
||||
|
@ -788,7 +788,6 @@ static int kim_probe(struct platform_device *pdev)
|
|||
kim_gdata, &version_debugfs_fops);
|
||||
debugfs_create_file("protocols", S_IRUGO, kim_debugfs_dir,
|
||||
kim_gdata, &list_debugfs_fops);
|
||||
pr_info(" debugfs entries created ");
|
||||
return 0;
|
||||
|
||||
err_debugfs_dir:
|
||||
|
|
Loading…
Reference in New Issue