aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/palmas-regulator.c4
-rw-r--r--include/linux/mfd/palmas.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c
index 91f60fa91d4b..05f11b96e17f 100644
--- a/drivers/regulator/palmas-regulator.c
+++ b/drivers/regulator/palmas-regulator.c
@@ -41,7 +41,7 @@ static const struct regulator_linear_range smps_high_ranges[] = {
41 REGULATOR_LINEAR_RANGE(3300000, 0x7A, 0x7f, 0), 41 REGULATOR_LINEAR_RANGE(3300000, 0x7A, 0x7f, 0),
42}; 42};
43 43
44static struct regs_info palmas_regs_info[] = { 44static struct palmas_regs_info palmas_regs_info[] = {
45 { 45 {
46 .name = "SMPS12", 46 .name = "SMPS12",
47 .sname = "smps1-in", 47 .sname = "smps1-in",
@@ -227,7 +227,7 @@ static struct regs_info palmas_regs_info[] = {
227 }, 227 },
228}; 228};
229 229
230static struct regs_info tps65917_regs_info[] = { 230static struct palmas_regs_info tps65917_regs_info[] = {
231 { 231 {
232 .name = "SMPS1", 232 .name = "SMPS1",
233 .sname = "smps1-in", 233 .sname = "smps1-in",
diff --git a/include/linux/mfd/palmas.h b/include/linux/mfd/palmas.h
index 1a045ba32c13..fb0390a1a498 100644
--- a/include/linux/mfd/palmas.h
+++ b/include/linux/mfd/palmas.h
@@ -102,7 +102,7 @@ struct palmas_sleep_requestor_info {
102 int bit_pos; 102 int bit_pos;
103}; 103};
104 104
105struct regs_info { 105struct palmas_regs_info {
106 char *name; 106 char *name;
107 char *sname; 107 char *sname;
108 u8 vsel_addr; 108 u8 vsel_addr;
@@ -117,7 +117,7 @@ struct palmas_pmic_driver_data {
117 int ldo_begin; 117 int ldo_begin;
118 int ldo_end; 118 int ldo_end;
119 int max_reg; 119 int max_reg;
120 struct regs_info *palmas_regs_info; 120 struct palmas_regs_info *palmas_regs_info;
121 struct of_regulator_match *palmas_matches; 121 struct of_regulator_match *palmas_matches;
122 struct palmas_sleep_requestor_info *sleep_req_info; 122 struct palmas_sleep_requestor_info *sleep_req_info;
123 int (*smps_register)(struct palmas_pmic *pmic, 123 int (*smps_register)(struct palmas_pmic *pmic,