1
0
Fork 0

regulator: dummy: Should be always-on

Regulator dummy does not have any enable operations. So it is always_on.

Signed-off-by: Markus Pargmann <mpa@pengutronix.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
hifive-unleashed-5.1
Markus Pargmann 2014-02-25 11:03:46 +01:00 committed by Mark Brown
parent c00dc359e5
commit 8669544a78
1 changed files with 5 additions and 1 deletions

View File

@ -25,7 +25,11 @@
struct regulator_dev *dummy_regulator_rdev;
static struct regulator_init_data dummy_initdata;
static struct regulator_init_data dummy_initdata = {
.constraints = {
.always_on = 1,
},
};
static struct regulator_ops dummy_ops;