ALSA: hda: cs35l41: Make use of the helper function dev_err_probe()
authorLucas Tanure <tanureal@opensource.cirrus.com>
Mon, 17 Jan 2022 16:08:29 +0000 (16:08 +0000)
committerTakashi Iwai <tiwai@suse.de>
Tue, 18 Jan 2022 13:07:15 +0000 (14:07 +0100)
When possible use dev_err_probe help to properly deal with the
PROBE_DEFER error, the benefit is that DEFER issue will be logged
in the devices_deferred debugfs file.
Using dev_err_probe() can reduce code size, and the error value
gets printed.

Signed-off-by: Lucas Tanure <tanureal@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220117160830.709403-5-tanureal@opensource.cirrus.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/cs35l41_hda.c

index 82f982f..c317b39 100644 (file)
@@ -429,8 +429,7 @@ int cs35l41_hda_probe(struct device *dev, const char *device_name, int id, int i
                if (ret == -EBUSY) {
                        dev_info(cs35l41->dev, "Reset line busy, assuming shared reset\n");
                } else {
-                       if (ret != -EPROBE_DEFER)
-                               dev_err(cs35l41->dev, "Failed to get reset GPIO: %d\n", ret);
+                       dev_err_probe(cs35l41->dev, ret, "Failed to get reset GPIO: %d\n", ret);
                        goto err;
                }
        }