diff options
author | Johannes Pointner <johannes.pointner@gmail.com> | 2014-09-25 02:31:42 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-11-25 11:18:38 -0500 |
commit | 11d0d30093301169833aedfc130d9e4abe621be1 (patch) | |
tree | e22ac76be22e5a08661463cc0ac97c9258503459 /drivers/mfd | |
parent | a9e2e4733cb6457aa6cbae4489b68ff0684848af (diff) |
mfd: tps65217: Add compatible string for subdevices
Adds of_compatible strings to mfd_cells for sub devices of the tps65217.
Signed-off-by: Johannes Pointner <johannes.pointner@br-automation.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/tps65217.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mfd/tps65217.c b/drivers/mfd/tps65217.c index a8ee52c95f2f..80a919a8ca97 100644 --- a/drivers/mfd/tps65217.c +++ b/drivers/mfd/tps65217.c | |||
@@ -33,9 +33,11 @@ | |||
33 | static const struct mfd_cell tps65217s[] = { | 33 | static const struct mfd_cell tps65217s[] = { |
34 | { | 34 | { |
35 | .name = "tps65217-pmic", | 35 | .name = "tps65217-pmic", |
36 | .of_compatible = "ti,tps65217-pmic", | ||
36 | }, | 37 | }, |
37 | { | 38 | { |
38 | .name = "tps65217-bl", | 39 | .name = "tps65217-bl", |
40 | .of_compatible = "ti,tps65217-bl", | ||
39 | }, | 41 | }, |
40 | }; | 42 | }; |
41 | 43 | ||