diff options
author | Andrzej Hajda <a.hajda@samsung.com> | 2013-09-27 03:27:46 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-10-23 11:21:29 -0400 |
commit | 4657185c3c6d928a07185f63f3558d9483e09d7e (patch) | |
tree | 79bb6fcead49a1fd4d8db0cbbbd5adf2e08bf70e /drivers/mfd | |
parent | 4233a0aafb72985a4692a9e6af5c528811226ac1 (diff) |
mfd: max77693: Added device tree support
This patch adds only of_match_table. There are no device specific
properties.
Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/max77693.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/mfd/max77693.c b/drivers/mfd/max77693.c index 27f5da3bc63a..4d81ed285fa2 100644 --- a/drivers/mfd/max77693.c +++ b/drivers/mfd/max77693.c | |||
@@ -225,11 +225,19 @@ static const struct dev_pm_ops max77693_pm = { | |||
225 | .resume = max77693_resume, | 225 | .resume = max77693_resume, |
226 | }; | 226 | }; |
227 | 227 | ||
228 | #ifdef CONFIG_OF | ||
229 | static struct of_device_id max77693_dt_match[] = { | ||
230 | { .compatible = "maxim,max77693" }, | ||
231 | {}, | ||
232 | }; | ||
233 | #endif | ||
234 | |||
228 | static struct i2c_driver max77693_i2c_driver = { | 235 | static struct i2c_driver max77693_i2c_driver = { |
229 | .driver = { | 236 | .driver = { |
230 | .name = "max77693", | 237 | .name = "max77693", |
231 | .owner = THIS_MODULE, | 238 | .owner = THIS_MODULE, |
232 | .pm = &max77693_pm, | 239 | .pm = &max77693_pm, |
240 | .of_match_table = of_match_ptr(max77693_dt_match), | ||
233 | }, | 241 | }, |
234 | .probe = max77693_i2c_probe, | 242 | .probe = max77693_i2c_probe, |
235 | .remove = max77693_i2c_remove, | 243 | .remove = max77693_i2c_remove, |