diff options
author | Simon Glass | 2017-05-31 17:57:27 -0600 |
---|---|---|
committer | Simon Glass | 2017-06-09 13:39:34 -0600 |
commit | 6f06ef57bb9031e322752343f7cf8f2408904452 (patch) | |
tree | b6046398a1514aa5890fe7cae593e60e2172f72d /arch/arm/mach-rockchip | |
parent | 3238474b8f60b17e8a2ccd3e19dee9d836e7a277 (diff) |
rockchip: rk3288: Add error debugging to veyron_init()
Add a debug() statement so we can see when something goes wrong with the
regulator.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm/mach-rockchip')
-rw-r--r-- | arch/arm/mach-rockchip/rk3288-board.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-rockchip/rk3288-board.c b/arch/arm/mach-rockchip/rk3288-board.c index 9894a25e080..18fd0dcd207 100644 --- a/arch/arm/mach-rockchip/rk3288-board.c +++ b/arch/arm/mach-rockchip/rk3288-board.c @@ -86,8 +86,10 @@ static int veyron_init(void) int ret; ret = regulator_get_by_platname("vdd_arm", &dev); - if (ret) + if (ret) { + debug("Cannot set regulator name\n"); return ret; + } /* Slowly raise to max CPU voltage to prevent overshoot */ ret = regulator_set_value(dev, 1200000); |