aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2026-01-08 07:34:36 +1000
committerDave Airlie <airlied@redhat.com>2026-01-08 07:34:42 +1000
commit50cf611b0bfa6c5bccfcd28dba32837c18ee3083 (patch)
treeecb35ebd6a9cfd095cd37f7b2f41ac6de70ee4ea
parentc4f2ae53863de2b5d125c3cdc9ff12668868a74a (diff)
parent8e6ad0dac6266c5e13874e816b016759d7145500 (diff)
Merge tag 'exynos-drm-fixes-v6.19-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos into drm-fixes
One code cleanup . Replace system_wq with system_percpu_wq in the Exynos HDMI driver. system_wq is effectively a per-cpu workqueue, but its name does not make this explicit. Recent workqueue changes introduced system_percpu_wq to clarify semantics and support ongoing workqueue API refactoring. Signed-off-by: Dave Airlie <airlied@redhat.com> From: Inki Dae <inki.dae@samsung.com> Link: https://patch.msgid.link/20260107091154.27436-1-inki.dae@samsung.com
-rw-r--r--drivers/gpu/drm/exynos/exynos_hdmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c
index 01813e11e6c6..8e76ac8ee4e2 100644
--- a/drivers/gpu/drm/exynos/exynos_hdmi.c
+++ b/drivers/gpu/drm/exynos/exynos_hdmi.c
@@ -1692,7 +1692,7 @@ static irqreturn_t hdmi_irq_thread(int irq, void *arg)
{
struct hdmi_context *hdata = arg;
- mod_delayed_work(system_wq, &hdata->hotplug_work,
+ mod_delayed_work(system_percpu_wq, &hdata->hotplug_work,
msecs_to_jiffies(HOTPLUG_DEBOUNCE_MS));
return IRQ_HANDLED;