[PATCH 4/4] regulator: palmas: Change the DT node property names to follow the convention

From: J Keerthy
Date: Mon Feb 18 2013 - 00:15:48 EST


DT node properties should not have "_". Replacing them by "-".

Signed-off-by: J Keerthy <j-keerthy@xxxxxx>
---
drivers/regulator/palmas-regulator.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c
index 22c6ae2..a7d1d53 100644
--- a/drivers/regulator/palmas-regulator.c
+++ b/drivers/regulator/palmas-regulator.c
@@ -551,17 +551,17 @@ static void palmas_dt_to_pdata(struct device *dev,
sizeof(struct palmas_reg_init), GFP_KERNEL);

ret = of_property_read_u32(palmas_matches[idx].of_node,
- "ti,warm_reset", &prop);
+ "ti,warm-reset", &prop);
if (!ret)
pdata->reg_init[idx]->warm_reset = prop;

ret = of_property_read_u32(palmas_matches[idx].of_node,
- "ti,roof_floor", &prop);
+ "ti,roof-floor", &prop);
if (!ret)
pdata->reg_init[idx]->roof_floor = prop;

ret = of_property_read_u32(palmas_matches[idx].of_node,
- "ti,mode_sleep", &prop);
+ "ti,mode-sleep", &prop);
if (!ret)
pdata->reg_init[idx]->mode_sleep = prop;

@@ -576,7 +576,7 @@ static void palmas_dt_to_pdata(struct device *dev,
pdata->reg_init[idx]->vsel = prop;
}

- ret = of_property_read_u32(node, "ti,ldo6_vibrator", &prop);
+ ret = of_property_read_u32(node, "ti,ldo6-vibrator", &prop);
if (!ret)
pdata->ldo6_vibrator = prop;
}
--
1.7.5.4

--
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/