bcm27xx: update to latest patches from RPi foundation
[openwrt/openwrt.git] / target / linux / bcm27xx / patches-5.4 / 950-0714-vc4_hdmi-Make-irq-shared.patch
1 From 45129a4714234396b4725d8898b14875add1874e Mon Sep 17 00:00:00 2001
2 From: Dom Cobley <popcornmix@gmail.com>
3 Date: Thu, 7 May 2020 18:16:08 +0100
4 Subject: [PATCH] vc4_hdmi: Make irq shared
5
6 Signed-off-by: Dom Cobley <popcornmix@gmail.com>
7 ---
8 drivers/gpu/drm/vc4/vc4_hdmi.c | 3 ++-
9 1 file changed, 2 insertions(+), 1 deletion(-)
10
11 --- a/drivers/gpu/drm/vc4/vc4_hdmi.c
12 +++ b/drivers/gpu/drm/vc4/vc4_hdmi.c
13 @@ -1428,7 +1428,8 @@ static int vc4_hdmi_cec_init(struct vc4_
14 HDMI_WRITE(HDMI_CEC_CNTRL_1, value);
15 ret = devm_request_threaded_irq(&pdev->dev, platform_get_irq(pdev, 0),
16 vc4_cec_irq_handler,
17 - vc4_cec_irq_handler_thread, 0,
18 + vc4_cec_irq_handler_thread,
19 + IRQF_SHARED,
20 "vc4 hdmi cec", vc4_hdmi);
21 if (ret)
22 goto err_delete_cec_adap;