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 'regulator-fix-v5.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator

Pull regulator fixes from Mark Brown:
"A couple of small fixes, one for a minor issue in the stm32-vrefbuf
driver and a documentation fix in the Qualcomm code"

* tag 'regulator-fix-v5.6-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator:
regulator: stm32-vrefbuf: fix a possible overshoot when re-enabling
regulator: qcom_spmi: Fix docs for PM8004

+3 -2
+1 -1
Documentation/devicetree/bindings/regulator/qcom,spmi-regulator.txt
··· 161 161 sub-node is identified using the node's name, with valid values listed for each 162 162 of the PMICs below. 163 163 164 - pm8005: 164 + pm8004: 165 165 s2, s5 166 166 167 167 pm8005:
+2 -1
drivers/regulator/stm32-vrefbuf.c
··· 88 88 } 89 89 90 90 val = readl_relaxed(priv->base + STM32_VREFBUF_CSR); 91 - val = (val & ~STM32_ENVR) | STM32_HIZ; 91 + val &= ~STM32_ENVR; 92 92 writel_relaxed(val, priv->base + STM32_VREFBUF_CSR); 93 93 94 94 pm_runtime_mark_last_busy(priv->dev); ··· 175 175 .volt_table = stm32_vrefbuf_voltages, 176 176 .n_voltages = ARRAY_SIZE(stm32_vrefbuf_voltages), 177 177 .ops = &stm32_vrefbuf_volt_ops, 178 + .off_on_delay = 1000, 178 179 .type = REGULATOR_VOLTAGE, 179 180 .owner = THIS_MODULE, 180 181 };