Commit 03ffcf3d authored by Krystian Garbaciak's avatar Krystian Garbaciak Committed by Mark Brown

regulator: Fix a typo in regulator_mode_to_status() core function.

Case REGULATOR_STATUS_STANDBY -> REGULATOR_MODE_STANDBY.
Signed-off-by: default avatarKrystian Garbaciak <krystian.garbaciak@diasemi.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent e2c98eaf
...@@ -2894,7 +2894,7 @@ int regulator_mode_to_status(unsigned int mode) ...@@ -2894,7 +2894,7 @@ int regulator_mode_to_status(unsigned int mode)
return REGULATOR_STATUS_NORMAL; return REGULATOR_STATUS_NORMAL;
case REGULATOR_MODE_IDLE: case REGULATOR_MODE_IDLE:
return REGULATOR_STATUS_IDLE; return REGULATOR_STATUS_IDLE;
case REGULATOR_STATUS_STANDBY: case REGULATOR_MODE_STANDBY:
return REGULATOR_STATUS_STANDBY; return REGULATOR_STATUS_STANDBY;
default: default:
return 0; return 0;
......
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