[PATCH] regulator: max8973: Fix up ramp_delay for MAX8973_RAMP_25mV_PER_US case

From: Axel Lin
Date: Wed Jun 10 2015 - 06:52:27 EST


Fix trivial typo.

Signed-off-by: Axel Lin <axel.lin@xxxxxxxxxx>
---
Hi Laxman,
This looks like a typo, can you confirm?
Thanks,
Axel
drivers/regulator/max8973-regulator.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/regulator/max8973-regulator.c b/drivers/regulator/max8973-regulator.c
index 89e53e0..6f2bdad 100644
--- a/drivers/regulator/max8973-regulator.c
+++ b/drivers/regulator/max8973-regulator.c
@@ -312,7 +312,7 @@ static int max8973_init_dcdc(struct max8973_chip *max,
max->desc.ramp_delay = 12000;
break;
case MAX8973_RAMP_25mV_PER_US:
- max->desc.ramp_delay = 252000;
+ max->desc.ramp_delay = 25000;
break;
case MAX8973_RAMP_50mV_PER_US:
max->desc.ramp_delay = 50000;
--
2.1.0



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/