Commit ec9b6f05 authored by Xichao Zhao's avatar Xichao Zhao Committed by Lee Jones
Browse files

mfd: kempld: Use PTR_ERR_OR_ZERO() to simplify code



Use the standard error pointer macro to shorten the code and simplify.

Signed-off-by: default avatarXichao Zhao <zhao.xichao@vivo.com>
Link: https://lore.kernel.org/r/20250812093104.103193-1-zhao.xichao@vivo.com


Signed-off-by: default avatarLee Jones <lee@kernel.org>
parent 58091331
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -141,10 +141,8 @@ static int kempld_create_platform_device(const struct kempld_platform_data *pdat
	};

	kempld_pdev = platform_device_register_full(&pdevinfo);
	if (IS_ERR(kempld_pdev))
		return PTR_ERR(kempld_pdev);

	return 0;
	return PTR_ERR_OR_ZERO(kempld_pdev);
}

/**