All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config
@ 2015-03-20 11:34 Krzysztof Kozlowski
  2015-03-20 11:34 ` [RESEND PATCH 2/3] clk: si570: Constify " Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2015-03-20 11:34 UTC (permalink / raw)
  To: Max Filippov, Mike Turquette, Stephen Boyd, linux-kernel
  Cc: Krzysztof Kozlowski

The regmap_config struct may be const because it is not modified by the
driver and regmap_init() accepts pointer to const.

Replace doubled const in the arrays of clock names with proper const
pointer to const data. This fixes the warnings:

drivers/clk/clk-si5351.c:71:25: warning: duplicate const
drivers/clk/clk-si5351.c:74:25: warning: duplicate const
drivers/clk/clk-si5351.c:77:25: warning: duplicate const
drivers/clk/clk-si5351.c:80:25: warning: duplicate const

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/clk/clk-si5351.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/clk/clk-si5351.c b/drivers/clk/clk-si5351.c
index 3b2a66f78755..44ea107cfc67 100644
--- a/drivers/clk/clk-si5351.c
+++ b/drivers/clk/clk-si5351.c
@@ -68,16 +68,16 @@ struct si5351_driver_data {
 	struct si5351_hw_data	*clkout;
 };
 
-static const char const *si5351_input_names[] = {
+static const char * const si5351_input_names[] = {
 	"xtal", "clkin"
 };
-static const char const *si5351_pll_names[] = {
+static const char * const si5351_pll_names[] = {
 	"plla", "pllb", "vxco"
 };
-static const char const *si5351_msynth_names[] = {
+static const char * const si5351_msynth_names[] = {
 	"ms0", "ms1", "ms2", "ms3", "ms4", "ms5", "ms6", "ms7"
 };
-static const char const *si5351_clkout_names[] = {
+static const char * const si5351_clkout_names[] = {
 	"clk0", "clk1", "clk2", "clk3", "clk4", "clk5", "clk6", "clk7"
 };
 
@@ -207,7 +207,7 @@ static bool si5351_regmap_is_writeable(struct device *dev, unsigned int reg)
 	return true;
 }
 
-static struct regmap_config si5351_regmap_config = {
+static const struct regmap_config si5351_regmap_config = {
 	.reg_bits = 8,
 	.val_bits = 8,
 	.cache_type = REGCACHE_RBTREE,
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [RESEND PATCH 2/3] clk: si570: Constify struct regmap_config
  2015-03-20 11:34 [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config Krzysztof Kozlowski
@ 2015-03-20 11:34 ` Krzysztof Kozlowski
  2015-03-21 21:34   ` Max Filippov
  2015-03-20 11:34 ` [RESEND PATCH 3/3] clk: cdce706: " Krzysztof Kozlowski
  2015-03-21 21:38 ` [RESEND PATCH 1/3] clk: si5351: Constify clock names and " Max Filippov
  2 siblings, 1 reply; 9+ messages in thread
From: Krzysztof Kozlowski @ 2015-03-20 11:34 UTC (permalink / raw)
  To: Max Filippov, Mike Turquette, Stephen Boyd, linux-kernel
  Cc: Krzysztof Kozlowski

The regmap_config struct may be const because it is not modified by the
driver and regmap_init() accepts pointer to const.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/clk/clk-si570.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk-si570.c b/drivers/clk/clk-si570.c
index fc167b3f8919..20a5aec98b1a 100644
--- a/drivers/clk/clk-si570.c
+++ b/drivers/clk/clk-si570.c
@@ -393,7 +393,7 @@ static bool si570_regmap_is_writeable(struct device *dev, unsigned int reg)
 	}
 }
 
-static struct regmap_config si570_regmap_config = {
+static const struct regmap_config si570_regmap_config = {
 	.reg_bits = 8,
 	.val_bits = 8,
 	.cache_type = REGCACHE_RBTREE,
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [RESEND PATCH 3/3] clk: cdce706: Constify struct regmap_config
  2015-03-20 11:34 [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config Krzysztof Kozlowski
  2015-03-20 11:34 ` [RESEND PATCH 2/3] clk: si570: Constify " Krzysztof Kozlowski
@ 2015-03-20 11:34 ` Krzysztof Kozlowski
  2015-03-21 21:33   ` Max Filippov
  2015-03-21 21:38 ` [RESEND PATCH 1/3] clk: si5351: Constify clock names and " Max Filippov
  2 siblings, 1 reply; 9+ messages in thread
From: Krzysztof Kozlowski @ 2015-03-20 11:34 UTC (permalink / raw)
  To: Max Filippov, Mike Turquette, Stephen Boyd, linux-kernel
  Cc: Krzysztof Kozlowski

The regmap_config struct may be const because it is not modified by the
driver and regmap_init() accepts pointer to const.

Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
---
 drivers/clk/clk-cdce706.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/clk-cdce706.c b/drivers/clk/clk-cdce706.c
index c386ad25beb4..b8e4f8a822e9 100644
--- a/drivers/clk/clk-cdce706.c
+++ b/drivers/clk/clk-cdce706.c
@@ -58,7 +58,7 @@
 #define CDCE706_CLKOUT_DIVIDER_MASK	0x7
 #define CDCE706_CLKOUT_ENABLE_MASK	0x8
 
-static struct regmap_config cdce706_regmap_config = {
+static const struct regmap_config cdce706_regmap_config = {
 	.reg_bits = 8,
 	.val_bits = 8,
 	.val_format_endian = REGMAP_ENDIAN_NATIVE,
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [RESEND PATCH 3/3] clk: cdce706: Constify struct regmap_config
  2015-03-20 11:34 ` [RESEND PATCH 3/3] clk: cdce706: " Krzysztof Kozlowski
@ 2015-03-21 21:33   ` Max Filippov
  2015-03-27  7:25     ` Stephen Boyd
  0 siblings, 1 reply; 9+ messages in thread
From: Max Filippov @ 2015-03-21 21:33 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: Mike Turquette, Stephen Boyd, LKML

On Fri, Mar 20, 2015 at 2:34 PM, Krzysztof Kozlowski
<k.kozlowski@samsung.com> wrote:
> The regmap_config struct may be const because it is not modified by the
> driver and regmap_init() accepts pointer to const.
>
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> ---
>  drivers/clk/clk-cdce706.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Max Filippov <jcmvbkbc@gmail.com>

-- 
Thanks.
-- Max

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [RESEND PATCH 2/3] clk: si570: Constify struct regmap_config
  2015-03-20 11:34 ` [RESEND PATCH 2/3] clk: si570: Constify " Krzysztof Kozlowski
@ 2015-03-21 21:34   ` Max Filippov
  2015-03-27  7:25     ` Stephen Boyd
  0 siblings, 1 reply; 9+ messages in thread
From: Max Filippov @ 2015-03-21 21:34 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: Mike Turquette, Stephen Boyd, LKML

On Fri, Mar 20, 2015 at 2:34 PM, Krzysztof Kozlowski
<k.kozlowski@samsung.com> wrote:
> The regmap_config struct may be const because it is not modified by the
> driver and regmap_init() accepts pointer to const.
>
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> ---
>  drivers/clk/clk-si570.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>

-- 
Thanks.
-- Max

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config
  2015-03-20 11:34 [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config Krzysztof Kozlowski
  2015-03-20 11:34 ` [RESEND PATCH 2/3] clk: si570: Constify " Krzysztof Kozlowski
  2015-03-20 11:34 ` [RESEND PATCH 3/3] clk: cdce706: " Krzysztof Kozlowski
@ 2015-03-21 21:38 ` Max Filippov
  2015-03-27  7:24   ` Stephen Boyd
  2 siblings, 1 reply; 9+ messages in thread
From: Max Filippov @ 2015-03-21 21:38 UTC (permalink / raw)
  To: Krzysztof Kozlowski; +Cc: Mike Turquette, Stephen Boyd, LKML

On Fri, Mar 20, 2015 at 2:34 PM, Krzysztof Kozlowski
<k.kozlowski@samsung.com> wrote:
> The regmap_config struct may be const because it is not modified by the
> driver and regmap_init() accepts pointer to const.
>
> Replace doubled const in the arrays of clock names with proper const
> pointer to const data. This fixes the warnings:
>
> drivers/clk/clk-si5351.c:71:25: warning: duplicate const
> drivers/clk/clk-si5351.c:74:25: warning: duplicate const
> drivers/clk/clk-si5351.c:77:25: warning: duplicate const
> drivers/clk/clk-si5351.c:80:25: warning: duplicate const
>
> Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> ---
>  drivers/clk/clk-si5351.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)

Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>

-- 
Thanks.
-- Max

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config
  2015-03-21 21:38 ` [RESEND PATCH 1/3] clk: si5351: Constify clock names and " Max Filippov
@ 2015-03-27  7:24   ` Stephen Boyd
  0 siblings, 0 replies; 9+ messages in thread
From: Stephen Boyd @ 2015-03-27  7:24 UTC (permalink / raw)
  To: Max Filippov; +Cc: Krzysztof Kozlowski, Mike Turquette, LKML

On 03/22, Max Filippov wrote:
> On Fri, Mar 20, 2015 at 2:34 PM, Krzysztof Kozlowski
> <k.kozlowski@samsung.com> wrote:
> > The regmap_config struct may be const because it is not modified by the
> > driver and regmap_init() accepts pointer to const.
> >
> > Replace doubled const in the arrays of clock names with proper const
> > pointer to const data. This fixes the warnings:
> >
> > drivers/clk/clk-si5351.c:71:25: warning: duplicate const
> > drivers/clk/clk-si5351.c:74:25: warning: duplicate const
> > drivers/clk/clk-si5351.c:77:25: warning: duplicate const
> > drivers/clk/clk-si5351.c:80:25: warning: duplicate const
> >
> > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> > ---
> >  drivers/clk/clk-si5351.c | 10 +++++-----
> >  1 file changed, 5 insertions(+), 5 deletions(-)
> 
> Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>
> 

Applied to clk-next

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [RESEND PATCH 2/3] clk: si570: Constify struct regmap_config
  2015-03-21 21:34   ` Max Filippov
@ 2015-03-27  7:25     ` Stephen Boyd
  0 siblings, 0 replies; 9+ messages in thread
From: Stephen Boyd @ 2015-03-27  7:25 UTC (permalink / raw)
  To: Max Filippov; +Cc: Krzysztof Kozlowski, Mike Turquette, LKML

On 03/22, Max Filippov wrote:
> On Fri, Mar 20, 2015 at 2:34 PM, Krzysztof Kozlowski
> <k.kozlowski@samsung.com> wrote:
> > The regmap_config struct may be const because it is not modified by the
> > driver and regmap_init() accepts pointer to const.
> >
> > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> > ---
> >  drivers/clk/clk-si570.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Reviewed-by: Max Filippov <jcmvbkbc@gmail.com>
> 

Applied to clk-next

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [RESEND PATCH 3/3] clk: cdce706: Constify struct regmap_config
  2015-03-21 21:33   ` Max Filippov
@ 2015-03-27  7:25     ` Stephen Boyd
  0 siblings, 0 replies; 9+ messages in thread
From: Stephen Boyd @ 2015-03-27  7:25 UTC (permalink / raw)
  To: Max Filippov; +Cc: Krzysztof Kozlowski, Mike Turquette, LKML

On 03/22, Max Filippov wrote:
> On Fri, Mar 20, 2015 at 2:34 PM, Krzysztof Kozlowski
> <k.kozlowski@samsung.com> wrote:
> > The regmap_config struct may be const because it is not modified by the
> > driver and regmap_init() accepts pointer to const.
> >
> > Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
> > ---
> >  drivers/clk/clk-cdce706.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Acked-by: Max Filippov <jcmvbkbc@gmail.com>
> 

Applied to clk-next

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-03-27  7:25 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-20 11:34 [RESEND PATCH 1/3] clk: si5351: Constify clock names and struct regmap_config Krzysztof Kozlowski
2015-03-20 11:34 ` [RESEND PATCH 2/3] clk: si570: Constify " Krzysztof Kozlowski
2015-03-21 21:34   ` Max Filippov
2015-03-27  7:25     ` Stephen Boyd
2015-03-20 11:34 ` [RESEND PATCH 3/3] clk: cdce706: " Krzysztof Kozlowski
2015-03-21 21:33   ` Max Filippov
2015-03-27  7:25     ` Stephen Boyd
2015-03-21 21:38 ` [RESEND PATCH 1/3] clk: si5351: Constify clock names and " Max Filippov
2015-03-27  7:24   ` Stephen Boyd

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.