We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7de81cf commit cc1b01eCopy full SHA for cc1b01e
drivers/amlogic/hdmi/hdmi_tx_20/hw/hdmi_tx_hw.c
@@ -2551,6 +2551,15 @@ static void hdmitx_setupirq(struct hdmitx_dev *phdev)
2551
r = request_irq(phdev->irq_hpd, &intr_handler,
2552
IRQF_SHARED, "hdmitx",
2553
(void *)phdev);
2554
+
2555
+ if (disableHPD) {
2556
+ phdev->hdmitx_event |= HDMI_TX_HPD_PLUGIN;
2557
+ phdev->hdmitx_event &= ~HDMI_TX_HPD_PLUGOUT;
2558
+ PREPARE_DELAYED_WORK(&phdev->work_hpd_plugin,
2559
+ hdmitx_hpd_plugin_handler);
2560
+ queue_delayed_work(phdev->hdmi_wq,
2561
+ &phdev->work_hpd_plugin, HZ/3);
2562
+ }
2563
}
2564
2565
static void hdmitx_uninit(struct hdmitx_dev *phdev)
0 commit comments