mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
drivers: platform: x86: Use PTR_RET function
Used PTR_RET function instead of IS_ERR and PTR_ERR. Patch found using coccinelle. Signed-off-by: Alexandru Gheorghiu <gheorghiuandru@gmail.com> Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
This commit is contained in:
parent
0572b12aa2
commit
2fbaf9b24a
1 changed files with 1 additions and 4 deletions
|
@ -176,10 +176,7 @@ static int __init samsungq10_init(void)
|
|||
samsungq10_probe,
|
||||
NULL, 0, NULL, 0);
|
||||
|
||||
if (IS_ERR(samsungq10_device))
|
||||
return PTR_ERR(samsungq10_device);
|
||||
|
||||
return 0;
|
||||
return PTR_RET(samsungq10_device);
|
||||
}
|
||||
|
||||
static void __exit samsungq10_exit(void)
|
||||
|
|
Loading…
Reference in a new issue