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

Commit 2fbaf9b2 authored by Alexandru Gheorghiu's avatar Alexandru Gheorghiu Committed by Matthew Garrett
Browse files

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: default avatarAlexandru Gheorghiu <gheorghiuandru@gmail.com>
Signed-off-by: default avatarMatthew Garrett <matthew.garrett@nebula.com>
parent 0572b12a
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -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)