All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yang Yingliang <yangyingliang@huawei.com>
To: <linux-input@vger.kernel.org>
Cc: <dmitry.torokhov@gmail.com>, <thierry.reding@gmail.com>,
	<u.kleine-koenig@pengutronix.de>, <yangyingliang@huawei.com>
Subject: [PATCH -next 1/5] Input: da7280 - Switch to use dev_err_probe() helper
Date: Tue, 20 Sep 2022 23:36:52 +0800	[thread overview]
Message-ID: <20220920153656.3486879-1-yangyingliang@huawei.com> (raw)

In the probe path, dev_err() can be replaced with dev_err_probe()
which will check if error code is -EPROBE_DEFER and prints the
error name. It also sets the defer probe reason which can be
checked later through debugfs.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/input/misc/da7280.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/drivers/input/misc/da7280.c b/drivers/input/misc/da7280.c
index b08610d6e575..b1ca4fd94e9e 100644
--- a/drivers/input/misc/da7280.c
+++ b/drivers/input/misc/da7280.c
@@ -1166,12 +1166,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 (error)
+			return dev_err_probe(dev, error,
+					     "Unable to request PWM\n");
 
 		/* Sync up PWM state and ensure it is off. */
 		pwm_init_state(haptics->pwm_dev, &state);
-- 
2.25.1


             reply	other threads:[~2022-09-20 15:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-20 15:36 Yang Yingliang [this message]
2022-09-20 15:36 ` [PATCH -next 2/5] Input: gpio-vibra - Switch to use dev_err_probe() helper Yang Yingliang
2022-09-20 15:36 ` [PATCH -next 3/5] Input: pwm-beeper " Yang Yingliang
2022-09-20 15:36 ` [PATCH -next 4/5] Input: pwm-vibra " Yang Yingliang
2022-09-20 15:36 ` [PATCH -next 5/5] Input: rotary_encoder " Yang Yingliang
2022-09-22  8:51 ` [PATCH -next 1/5] Input: da7280 " Mattijs Korpershoek
2022-09-22 10:23   ` Yang Yingliang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220920153656.3486879-1-yangyingliang@huawei.com \
    --to=yangyingliang@huawei.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=u.kleine-koenig@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.