diff options
author | zhaoxiao <zhaoxiao@uniontech.com> | 2022-08-12 08:39:26 +0200 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2022-08-31 20:58:25 +0200 |
commit | 1ea252ef299bbce16cc40d52d0635346fdc4b7ea (patch) | |
tree | af67de24c80611f110272888d91c153adc5d3c41 /drivers/thermal | |
parent | thermal/drivers/thermal_mmio: Drop of_match_ptr() (diff) | |
download | linux-1ea252ef299bbce16cc40d52d0635346fdc4b7ea.tar.xz linux-1ea252ef299bbce16cc40d52d0635346fdc4b7ea.zip |
thermal: da9062-thermal: Drop redundant error message
Since platform_get_irq() already prints an error message on failure, it
is not necessary to print another one for the same purpose.
Signed-off-by: zhaoxiao <zhaoxiao@uniontech.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/da9062-thermal.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/thermal/da9062-thermal.c b/drivers/thermal/da9062-thermal.c index 180edec34e07..7dcfde7a9f2c 100644 --- a/drivers/thermal/da9062-thermal.c +++ b/drivers/thermal/da9062-thermal.c @@ -248,10 +248,9 @@ static int da9062_thermal_probe(struct platform_device *pdev) jiffies_to_msecs(thermal->zone->passive_delay_jiffies)); ret = platform_get_irq_byname(pdev, "THERMAL"); - if (ret < 0) { - dev_err(&pdev->dev, "Failed to get platform IRQ.\n"); + if (ret < 0) goto err_zone; - } + thermal->irq = ret; ret = request_threaded_irq(thermal->irq, NULL, |