msm: board-msm7x30: Voltage level fix for shared Voltage Regulator.

Some voltage regulators are shared among more than one peripheral
and these peripheral may use different voltage levels. Hence while
setting the voltage levels for such regulators, range of min/max
voltage should be given.

After that voltage regulator framework will choose the appropriate
voltage levels which will meet the constraints for all involved
peripherals. In 7x30 BT & Wifi uses the same regulator.

Change-Id: Ibabfd2e2c946c1b5baac47e087820d641e401968
Signed-off-by: Pankaj Kumar <pakuma@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-msm7x30.c b/arch/arm/mach-msm/board-msm7x30.c
index d73f612..9ba92ed 100644
--- a/arch/arm/mach-msm/board-msm7x30.c
+++ b/arch/arm/mach-msm/board-msm7x30.c
@@ -4565,20 +4565,20 @@
 	{ .supply = "smps3", .min_uV = 1800000, .max_uV = 1800000 },
 	{ .supply = "smps2", .min_uV = 1300000, .max_uV = 1300000 },
 	{ .supply = "ldo24", .min_uV = 1200000, .max_uV = 1200000 },
-	{ .supply = "ldo13", .min_uV = 2900000, .max_uV = 2900000 },
+	{ .supply = "ldo13", .min_uV = 2900000, .max_uV = 3050000 },
 };
 
 static struct regulator_bulk_data regs_bt_bahama_v1[] = {
 	{ .supply = "smps3", .min_uV = 1800000, .max_uV = 1800000 },
 	{ .supply = "ldo7",  .min_uV = 1800000, .max_uV = 1800000 },
 	{ .supply = "smps2", .min_uV = 1300000, .max_uV = 1300000 },
-	{ .supply = "ldo13", .min_uV = 2900000, .max_uV = 2900000 },
+	{ .supply = "ldo13", .min_uV = 2900000, .max_uV = 3050000 },
 };
 
 static struct regulator_bulk_data regs_bt_bahama_v2[] = {
 	{ .supply = "smps3", .min_uV = 1800000, .max_uV = 1800000 },
 	{ .supply = "ldo7",  .min_uV = 1800000, .max_uV = 1800000 },
-	{ .supply = "ldo13", .min_uV = 2900000, .max_uV = 2900000 },
+	{ .supply = "ldo13", .min_uV = 2900000, .max_uV = 3050000 },
 };
 
 static struct regulator_bulk_data *regs_bt;