Re: [PATCH] regulator: wm831x-dcdc: Fix list of wm831x_dcdc_ilim from mA to uA

2019-02-25 Thread Charles Keepax
On Sun, Feb 24, 2019 at 09:16:51PM +0800, Axel Lin wrote: > The wm831x_dcdc_ilim entries needs to be uA because it is used to compare > with min_uA and max_uA. > While at it also make the array const and change to use unsigned int. > > Fixes: e4ee831f949a ("regulator: Add WM831x DC-DC buck

[PATCH] regulator: wm831x-dcdc: Fix list of wm831x_dcdc_ilim from mA to uA

2019-02-24 Thread Axel Lin
The wm831x_dcdc_ilim entries needs to be uA because it is used to compare with min_uA and max_uA. While at it also make the array const and change to use unsigned int. Fixes: e4ee831f949a ("regulator: Add WM831x DC-DC buck convertor support") Signed-off-by: Axel Lin ---