Message ID | 1395047958-17953-3-git-send-email-k.kozlowski@samsung.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Krzysztof, On 17.03.2014 10:19, Krzysztof Kozlowski wrote: > Add of_compatible strings for S5M8767 and S2MPS14 clock MFD cells. > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > --- > drivers/mfd/sec-core.c | 3 +++ > 1 file changed, 3 insertions(+) Reviewed-by: Tomasz Figa <t.figa@samsung.com> Best regards, Tomasz
> Add of_compatible strings for S5M8767 and S2MPS14 clock MFD cells. > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > --- > drivers/mfd/sec-core.c | 3 +++ > 1 file changed, 3 insertions(+) Applied with Tomasz' Reviewed-by.
On Tue, 2014-03-18 at 20:31 +0000, Lee Jones wrote: > > Add of_compatible strings for S5M8767 and S2MPS14 clock MFD cells. > > > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > > --- > > drivers/mfd/sec-core.c | 3 +++ > > 1 file changed, 3 insertions(+) > > Applied with Tomasz' Reviewed-by. Thanks! One minor thing - I see that Tomasz' Review-by got lost when the patch was applied to your tree: https://git.kernel.org/cgit/linux/kernel/git/lee/mfd.git/commit/?h=for-mfd-next&id=09f8c0a07044bb8ac5085fcbcf82468173a1666d. Best regards, Krzysztof
> > > Add of_compatible strings for S5M8767 and S2MPS14 clock MFD cells. > > > > > > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> > > > --- > > > drivers/mfd/sec-core.c | 3 +++ > > > 1 file changed, 3 insertions(+) > > > > Applied with Tomasz' Reviewed-by. > > Thanks! One minor thing - I see that Tomasz' Review-by got lost when the > patch was applied to your tree: > https://git.kernel.org/cgit/linux/kernel/git/lee/mfd.git/commit/?h=for-mfd-next&id=09f8c0a07044bb8ac5085fcbcf82468173a1666d. Thanks for the prod, but I do have it applied locally. I'll push the branch later today.
diff --git a/drivers/mfd/sec-core.c b/drivers/mfd/sec-core.c index d163c66edebb..716606479235 100644 --- a/drivers/mfd/sec-core.c +++ b/drivers/mfd/sec-core.c @@ -59,6 +59,7 @@ static const struct mfd_cell s5m8767_devs[] = { .name = "s5m-rtc", }, { .name = "s5m8767-clk", + .of_compatible = "samsung,s5m8767-clk", } }; @@ -67,6 +68,7 @@ static const struct mfd_cell s2mps11_devs[] = { .name = "s2mps11-pmic", }, { .name = "s2mps11-clk", + .of_compatible = "samsung,s2mps11-clk", } }; @@ -77,6 +79,7 @@ static const struct mfd_cell s2mps14_devs[] = { .name = "s2mps14-rtc", }, { .name = "s2mps14-clk", + .of_compatible = "samsung,s2mps14-clk", } };
Add of_compatible strings for S5M8767 and S2MPS14 clock MFD cells. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> --- drivers/mfd/sec-core.c | 3 +++ 1 file changed, 3 insertions(+)