thermal/drivers/hisi: Fix wrong platform_get_irq_byname()

Without this patch, the thermal driver on hi6220 and hi3660 is broken.

That is due because part of the posted patchset was merged but a small
change in the DT was dropped.

The hi6220 and hi3660 do not have an interrupt name in the DT, so
finding interrupt by name fails.

Fix this by returning back to the platform_get_irq() function call.

Fixes: 2cffaeff08 (thermal/drivers/hisi: Use platform_get_irq_byname)
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
这个提交包含在:
Daniel Lezcano
2018-11-30 09:00:31 +01:00
提交者 Eduardo Valentin
父节点 40e020c129
当前提交 5d7ab8f0bc

查看文件

@@ -589,7 +589,7 @@ static int hisi_thermal_probe(struct platform_device *pdev)
return ret;
}
ret = platform_get_irq_byname(pdev, sensor->irq_name);
ret = platform_get_irq(pdev, 0);
if (ret < 0)
return ret;