Commit 3bea03e7 authored by Samuel Holland's avatar Samuel Holland
Browse files

allwinner: a64: power: Remove duplicate DT check



should_enable_regulator() is already checked in the regulators subnode
loop before setup_regulator() is called, so there's no need to check it
again here.
Signed-off-by: default avatarSamuel Holland <samuel@sholland.org>
Change-Id: Idb8b8a6e435246f4fb226bc84813449d80a0a977
parent 18fbfefb
...@@ -203,9 +203,6 @@ static int setup_regulator(const void *fdt, int node, ...@@ -203,9 +203,6 @@ static int setup_regulator(const void *fdt, int node,
int mvolt; int mvolt;
uint8_t regval; uint8_t regval;
if (!should_enable_regulator(fdt, node))
return -ENOENT;
mvolt = fdt_get_regulator_millivolt(fdt, node); mvolt = fdt_get_regulator_millivolt(fdt, node);
if (mvolt < reg->min_volt || mvolt > reg->max_volt) if (mvolt < reg->min_volt || mvolt > reg->max_volt)
return -EINVAL; return -EINVAL;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment