diff options
author | Steve Twiss <stwiss.opensource@diasemi.com> | 2015-01-20 08:54:25 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-01-22 11:04:04 -0500 |
commit | 71e03de46d73b87aab5f80fa55449a9e40c55d17 (patch) | |
tree | d5dd28bf25f22fddd2fbd20f49c2616ea8a84fa5 /drivers/mfd/da9063-i2c.c | |
parent | 803926825fa4db007437f76654e3e63bafb9b906 (diff) |
mfd: da9063: Add device tree support
Add device tree support for DA9063 regulators; Real-Time Clock
and Watchdog.
Signed-off-by: Steve Twiss <stwiss.opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/da9063-i2c.c')
-rw-r--r-- | drivers/mfd/da9063-i2c.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/mfd/da9063-i2c.c b/drivers/mfd/da9063-i2c.c index 21fd8d9a217b..6f3a7c0001f9 100644 --- a/drivers/mfd/da9063-i2c.c +++ b/drivers/mfd/da9063-i2c.c | |||
@@ -25,6 +25,9 @@ | |||
25 | #include <linux/mfd/da9063/pdata.h> | 25 | #include <linux/mfd/da9063/pdata.h> |
26 | #include <linux/mfd/da9063/registers.h> | 26 | #include <linux/mfd/da9063/registers.h> |
27 | 27 | ||
28 | #include <linux/of.h> | ||
29 | #include <linux/regulator/of_regulator.h> | ||
30 | |||
28 | static const struct regmap_range da9063_ad_readable_ranges[] = { | 31 | static const struct regmap_range da9063_ad_readable_ranges[] = { |
29 | { | 32 | { |
30 | .range_min = DA9063_REG_PAGE_CON, | 33 | .range_min = DA9063_REG_PAGE_CON, |
@@ -203,6 +206,11 @@ static struct regmap_config da9063_regmap_config = { | |||
203 | .cache_type = REGCACHE_RBTREE, | 206 | .cache_type = REGCACHE_RBTREE, |
204 | }; | 207 | }; |
205 | 208 | ||
209 | static const struct of_device_id da9063_dt_ids[] = { | ||
210 | { .compatible = "dlg,da9063", }, | ||
211 | { } | ||
212 | }; | ||
213 | MODULE_DEVICE_TABLE(of, da9063_dt_ids); | ||
206 | static int da9063_i2c_probe(struct i2c_client *i2c, | 214 | static int da9063_i2c_probe(struct i2c_client *i2c, |
207 | const struct i2c_device_id *id) | 215 | const struct i2c_device_id *id) |
208 | { | 216 | { |
@@ -257,6 +265,7 @@ static struct i2c_driver da9063_i2c_driver = { | |||
257 | .driver = { | 265 | .driver = { |
258 | .name = "da9063", | 266 | .name = "da9063", |
259 | .owner = THIS_MODULE, | 267 | .owner = THIS_MODULE, |
268 | .of_match_table = of_match_ptr(da9063_dt_ids), | ||
260 | }, | 269 | }, |
261 | .probe = da9063_i2c_probe, | 270 | .probe = da9063_i2c_probe, |
262 | .remove = da9063_i2c_remove, | 271 | .remove = da9063_i2c_remove, |