Thread (57 messages) flat view 57 messages, 5 authors, 2020-08-28

Re: [PATCH 04/24] Input: gpio-vibra - Simplify with dev_err_probe()

From: Krzysztof Kozlowski <krzk@kernel.org>
Date: 2020-08-27 18:40:45
Also in: lkml, platform-driver-x86

On Thu, Aug 27, 2020 at 12:03:52PM +0300, Andy Shevchenko wrote:
On Wed, Aug 26, 2020 at 9:20 PM Krzysztof Kozlowski [off-list ref] wrote:
quoted
Common pattern of handling deferred probe can be simplified with
dev_err_probe().  Less code and also it prints the error value.
quoted
        vibrator->vcc = devm_regulator_get(&pdev->dev, "vcc");
        err = PTR_ERR_OR_ZERO(vibrator->vcc);
-       if (err) {
-               if (err != -EPROBE_DEFER)
-                       dev_err(&pdev->dev, "Failed to request regulator: %d\n",
-                               err);
-               return err;
-       }
+       if (err)
+               return dev_err_probe(&pdev->dev, err, "Failed to request regulator\n");
Can it be rather
  if (IS_ERR())
    return dev_err_probe(dev, PTR_ERR());
w/o err be involved?
Good point.

Best regards,
Krzysztof
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help