diff options
author | Yangtao Li <frank.li@vivo.com> | 2023-07-10 11:23:49 +0800 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2023-07-27 18:41:59 +0200 |
commit | 2a1ca44b654346cadfc538c4fb32eecd8daf3140 (patch) | |
tree | d703fa4ab711c05052120a15cdc7fa7ae9ce9444 /drivers/gpu/drm | |
parent | 829912ebdf47978f396d3added6fd215c36e2bd3 (diff) |
drm/tegra: dpaux: Fix incorrect return value of platform_get_irq
When platform_get_irq fails, we should return dpaux->irq
instead of -ENXIO.
Fixes: 6b6b604215c6 ("drm/tegra: Add eDP support")
Signed-off-by: Yangtao Li <frank.li@vivo.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230710032355.72914-13-frank.li@vivo.com
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/tegra/dpaux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tegra/dpaux.c b/drivers/gpu/drm/tegra/dpaux.c index 22b7b85e1b5e..ef02d530f78d 100644 --- a/drivers/gpu/drm/tegra/dpaux.c +++ b/drivers/gpu/drm/tegra/dpaux.c @@ -466,7 +466,7 @@ static int tegra_dpaux_probe(struct platform_device *pdev) dpaux->irq = platform_get_irq(pdev, 0); if (dpaux->irq < 0) - return -ENXIO; + return dpaux->irq; if (!pdev->dev.pm_domain) { dpaux->rst = devm_reset_control_get(&pdev->dev, "dpaux"); |