
25 Jul
2018
25 Jul
'18
4:45 a.m.
On 24 July 2018 at 08:31, Fabrice Gasnier fabrice.gasnier@st.com wrote:
device_get_supply_regulator() only needs to be called once. But each time there's call to adc_vxx_value() for instance, it calls adc_vxx_platdata_update() -> device_get_supply_regulator().
So, move device_get_supply_regulator() to pre_probe() routine.
This also allows vdd_supply/vss_supply to be provided directly from uc_pdata, e.g dt-binding variant like stm32-adc provide its own 'vref-supply'.
Signed-off-by: Fabrice Gasnier fabrice.gasnier@st.com
Changes in v2:
- move device_get_supply_regulator() call to pre_probe() routine
drivers/adc/adc-uclass.c | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-)
I think this looks right.
Reviewed-by: Simon Glass sjg@chromium.org