Skip to content

Commit 50cf611

Browse files
committed
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
2 parents c4f2ae5 + 8e6ad0d commit 50cf611

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/gpu/drm/exynos/exynos_hdmi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1692,7 +1692,7 @@ static irqreturn_t hdmi_irq_thread(int irq, void *arg)
16921692
{
16931693
struct hdmi_context *hdata = arg;
16941694

1695-
mod_delayed_work(system_wq, &hdata->hotplug_work,
1695+
mod_delayed_work(system_percpu_wq, &hdata->hotplug_work,
16961696
msecs_to_jiffies(HOTPLUG_DEBOUNCE_MS));
16971697

16981698
return IRQ_HANDLED;

0 commit comments

Comments
 (0)