From: Yang Yingliang Date: Wed, 9 Aug 2023 09:19:53 +0000 (+0800) Subject: parisc: pdt: Use PTR_ERR_OR_ZERO() to simplify code X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=56cf894effc2946f273f7bfc9a28f3741978156c;p=linux.git parisc: pdt: Use PTR_ERR_OR_ZERO() to simplify code Return PTR_ERR_OR_ZERO() instead of return 0 or PTR_ERR() to simplify code. Signed-off-by: Yang Yingliang Signed-off-by: Helge Deller --- diff --git a/arch/parisc/kernel/pdt.c b/arch/parisc/kernel/pdt.c index 0d24735bd9182..0f9b3b5914cf6 100644 --- a/arch/parisc/kernel/pdt.c +++ b/arch/parisc/kernel/pdt.c @@ -354,10 +354,8 @@ static int __init pdt_initcall(void) return -ENODEV; kpdtd_task = kthread_run(pdt_mainloop, NULL, "kpdtd"); - if (IS_ERR(kpdtd_task)) - return PTR_ERR(kpdtd_task); - return 0; + return PTR_ERR_OR_ZERO(kpdtd_task); } late_initcall(pdt_initcall);