aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/sec-core.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2014-03-17 05:19:17 -0400
committerLee Jones <lee.jones@linaro.org>2014-03-19 05:00:07 -0400
commit53c31b3437a6400c6ffc2c9315680217ad84cb6d (patch)
tree5cff88634f4a4bbc9025d65549cb1b100f2817d2 /drivers/mfd/sec-core.c
parent3033ee62c0d40561835a6249db80c3eff3a52b0a (diff)
mfd: sec-core: Add of_compatible strings for clock MFD cells
Add of_compatible strings for S5M8767 and S2MPS14 clock MFD cells. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reviewed-by: Tomasz Figa <t.figa@samsung.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/sec-core.c')
-rw-r--r--drivers/mfd/sec-core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c
index 281a82747275..e9bf73ba6e69 100644
--- a/drivers/mfd/sec-core.c
+++ b/drivers/mfd/sec-core.c
@@ -60,6 +60,7 @@ static const struct mfd_cell s5m8767_devs[] = {
60 .name = "s5m-rtc", 60 .name = "s5m-rtc",
61 }, { 61 }, {
62 .name = "s5m8767-clk", 62 .name = "s5m8767-clk",
63 .of_compatible = "samsung,s5m8767-clk",
63 } 64 }
64}; 65};
65 66
@@ -68,6 +69,7 @@ static const struct mfd_cell s2mps11_devs[] = {
68 .name = "s2mps11-pmic", 69 .name = "s2mps11-pmic",
69 }, { 70 }, {
70 .name = "s2mps11-clk", 71 .name = "s2mps11-clk",
72 .of_compatible = "samsung,s2mps11-clk",
71 } 73 }
72}; 74};
73 75
@@ -78,6 +80,7 @@ static const struct mfd_cell s2mps14_devs[] = {
78 .name = "s2mps14-rtc", 80 .name = "s2mps14-rtc",
79 }, { 81 }, {
80 .name = "s2mps14-clk", 82 .name = "s2mps14-clk",
83 .of_compatible = "samsung,s2mps14-clk",
81 } 84 }
82}; 85};
83 86