mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-12 11:36:39 +07:00
regulator: stubs: Make stub regulator_get_voltage() return an error
Returning 0 isn't useful, it's not even meaningful if there is a real regulator there. Reported-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
230a5a1c41
commit
08aed2f6fb
@ -291,7 +291,7 @@ static inline int regulator_set_voltage(struct regulator *regulator,
|
|||||||
|
|
||||||
static inline int regulator_get_voltage(struct regulator *regulator)
|
static inline int regulator_get_voltage(struct regulator *regulator)
|
||||||
{
|
{
|
||||||
return 0;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int regulator_set_current_limit(struct regulator *regulator,
|
static inline int regulator_set_current_limit(struct regulator *regulator,
|
||||||
|
Loading…
Reference in New Issue
Block a user