Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'thermal-v5.5-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux

Pull thermal fix from Daniel Lezcano:
"Fix backward compatibility with old DTBs on QCOM tsens (Amit
Kucheria)"

* tag 'thermal-v5.5-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux:
drivers: thermal: tsens: Work with old DTBs

+3
+3
drivers/thermal/qcom/tsens.c
··· 110 110 irq = platform_get_irq_byname(pdev, "uplow"); 111 111 if (irq < 0) { 112 112 ret = irq; 113 + /* For old DTs with no IRQ defined */ 114 + if (irq == -ENXIO) 115 + ret = 0; 113 116 goto err_put_device; 114 117 } 115 118