diff options
author | Dave Airlie <airlied@redhat.com> | 2022-03-04 05:50:47 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2022-03-04 05:50:56 +0300 |
commit | 66a8af1f6e3c10190dff14a5668661c092a2a85f (patch) | |
tree | 6049df8b2b2eec4a951bacee21d7a1c833681d0b /drivers/gpu/drm/tegra/dpaux.c | |
parent | 38a15ad9488e21cad8f42d3befca20f91e5b2874 (diff) | |
parent | cf5086d35d8c7c2b9cb1ca34590097a5f2f8b588 (diff) | |
download | linux-66a8af1f6e3c10190dff14a5668661c092a2a85f.tar.xz |
Merge tag 'drm/tegra/for-5.18-rc1' of https://gitlab.freedesktop.org/drm/tegra into drm-next
drm/tegra: Changes for v5.18-rc1
This contains a couple more minor fixes that didn't seem urgent enough
for v5.17. On top of that this improves YUV format support on older
chips.
Signed-off-by: Dave Airlie <airlied@redhat.com>
From: Thierry Reding <thierry.reding@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220301124426.1207653-1-thierry.reding@gmail.com
Diffstat (limited to 'drivers/gpu/drm/tegra/dpaux.c')
-rw-r--r-- | drivers/gpu/drm/tegra/dpaux.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/tegra/dpaux.c b/drivers/gpu/drm/tegra/dpaux.c index 5847dcad2478..20e1dd6b3bf0 100644 --- a/drivers/gpu/drm/tegra/dpaux.c +++ b/drivers/gpu/drm/tegra/dpaux.c @@ -280,7 +280,6 @@ static void tegra_dpaux_hotplug(struct work_struct *work) static irqreturn_t tegra_dpaux_irq(int irq, void *data) { struct tegra_dpaux *dpaux = data; - irqreturn_t ret = IRQ_HANDLED; u32 value; /* clear interrupts */ @@ -297,7 +296,7 @@ static irqreturn_t tegra_dpaux_irq(int irq, void *data) if (value & DPAUX_INTR_AUX_DONE) complete(&dpaux->complete); - return ret; + return IRQ_HANDLED; } enum tegra_dpaux_functions { |