linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] input: da7280: Make use of the helper function dev_err_probe()
@ 2022-02-17  1:39 zhaoxiao
  2022-02-18 13:16 ` Adam Thomson
  0 siblings, 1 reply; 2+ messages in thread
From: zhaoxiao @ 2022-02-17  1:39 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: support.opensource, linux-input, linux-kernel, zhaoxiao

devm_pwm_get() can return -EPROBE_DEFER if the pwm regulator is not
ready yet. Use dev_err_probe() for pwm regulator resources
to indicate the deferral reason when waiting for the
resource to come up.

Signed-off-by: zhaoxiao <zhaoxiao@uniontech.com>
---
 v2:Remove the redundant brackets '}'
 drivers/input/misc/da7280.c | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/drivers/input/misc/da7280.c b/drivers/input/misc/da7280.c
index b08610d6e575..65f3e0251b23 100644
--- a/drivers/input/misc/da7280.c
+++ b/drivers/input/misc/da7280.c
@@ -1165,13 +1165,9 @@ static int da7280_probe(struct i2c_client *client,
 
 	if (haptics->const_op_mode == DA7280_PWM_MODE) {
 		haptics->pwm_dev = devm_pwm_get(dev, NULL);
-		error = PTR_ERR_OR_ZERO(haptics->pwm_dev);
-		if (error) {
-			if (error != -EPROBE_DEFER)
-				dev_err(dev, "Unable to request PWM: %d\n",
-					error);
-			return error;
-		}
+		if (IS_ERR(haptics->pwm_dev))
+			return dev_err_probe(dev, PTR_ERR(haptics->pwm_dev),
+					"Unable to request PWM\n");
 
 		/* Sync up PWM state and ensure it is off. */
 		pwm_init_state(haptics->pwm_dev, &state);
-- 
2.20.1




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* RE: [PATCH v2] input: da7280: Make use of the helper function dev_err_probe()
  2022-02-17  1:39 [PATCH v2] input: da7280: Make use of the helper function dev_err_probe() zhaoxiao
@ 2022-02-18 13:16 ` Adam Thomson
  0 siblings, 0 replies; 2+ messages in thread
From: Adam Thomson @ 2022-02-18 13:16 UTC (permalink / raw)
  To: zhaoxiao, dmitry.torokhov; +Cc: Support Opensource, linux-input, linux-kernel

On 17 February 2022 01:39, zhaoxiao wrote:

> devm_pwm_get() can return -EPROBE_DEFER if the pwm regulator is not
> ready yet. Use dev_err_probe() for pwm regulator resources
> to indicate the deferral reason when waiting for the
> resource to come up.
> 
> Signed-off-by: zhaoxiao <zhaoxiao@uniontech.com>

Reviewed-by: Adam Thomson <Adam.Thomson.Opensource@diasemi.com>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-18 13:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-17  1:39 [PATCH v2] input: da7280: Make use of the helper function dev_err_probe() zhaoxiao
2022-02-18 13:16 ` Adam Thomson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).