From: Tero Kristo <t-kristo@ti.com>
To: <linux-clk@vger.kernel.org>, <linux-omap@vger.kernel.org>,
<tony@atomide.com>, <sboyd@codeaurora.org>,
<mturquette@baylibre.com>
Cc: <linux-arm-kernel@lists.infradead.org>
Subject: [PATCH 07/15] clk: ti: enforce const types on string arrays
Date: Mon, 13 Feb 2017 11:35:03 +0200 [thread overview]
Message-ID: <1486978511-29668-8-git-send-email-t-kristo@ti.com> (raw)
In-Reply-To: <1486978511-29668-1-git-send-email-t-kristo@ti.com>
Constant string arrays should use const char * const instead of just
const char *. Change the implementations using these to proper type.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
---
drivers/clk/ti/clock.h | 2 +-
drivers/clk/ti/composite.c | 2 +-
drivers/clk/ti/mux.c | 8 ++++----
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/clk/ti/clock.h b/drivers/clk/ti/clock.h
index 0385990..a2d16190 100644
--- a/drivers/clk/ti/clock.h
+++ b/drivers/clk/ti/clock.h
@@ -88,7 +88,7 @@ struct ti_clk_mux {
int num_parents;
u16 reg;
u8 module;
- const char **parents;
+ const char * const *parents;
u16 flags;
};
diff --git a/drivers/clk/ti/composite.c b/drivers/clk/ti/composite.c
index 3f60f99..beea894 100644
--- a/drivers/clk/ti/composite.c
+++ b/drivers/clk/ti/composite.c
@@ -124,7 +124,7 @@ struct clk *ti_clk_register_composite(struct ti_clk *setup)
struct clk_hw *mux;
struct clk_hw *div;
int num_parents = 1;
- const char **parent_names = NULL;
+ const char * const *parent_names = NULL;
struct clk *clk;
int ret;
diff --git a/drivers/clk/ti/mux.c b/drivers/clk/ti/mux.c
index 0da149e..3cc6db4 100644
--- a/drivers/clk/ti/mux.c
+++ b/drivers/clk/ti/mux.c
@@ -97,10 +97,10 @@ static int ti_clk_mux_set_parent(struct clk_hw *hw, u8 index)
};
static struct clk *_register_mux(struct device *dev, const char *name,
- const char **parent_names, u8 num_parents,
- unsigned long flags, void __iomem *reg,
- u8 shift, u32 mask, u8 clk_mux_flags,
- u32 *table)
+ const char * const *parent_names,
+ u8 num_parents, unsigned long flags,
+ void __iomem *reg, u8 shift, u32 mask,
+ u8 clk_mux_flags, u32 *table)
{
struct clk_mux *mux;
struct clk *clk;
--
1.9.1
next prev parent reply other threads:[~2017-02-13 9:35 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-13 9:34 [PATCH 00/15] clk: ti: cleanups / fixes for preparation of clkctrl clocks Tero Kristo
2017-02-13 9:34 ` [PATCH 01/15] clk: ti: remove un-used definitions from public clk_hw_omap struct Tero Kristo
2017-02-13 9:34 ` [PATCH 02/15] clk: ti: add support for automatic clock alias generation Tero Kristo
2017-03-07 14:48 ` Stephen Boyd
2017-03-07 22:16 ` Tero Kristo
2017-02-13 9:34 ` [PATCH 03/15] clk: ti: add API for creating aliases automatically for simple clock types Tero Kristo
2017-02-13 9:35 ` [PATCH 04/15] clk: ti: use automatic clock alias generation framework Tero Kristo
2017-02-13 9:35 ` [PATCH 05/15] clk: ti: add clkdm_lookup to the exported functions Tero Kristo
2017-02-13 9:35 ` [PATCH 06/15] clk: ti: move omap2_init_clk_clkdm under TI clock driver Tero Kristo
2017-02-13 9:35 ` Tero Kristo [this message]
2017-02-13 9:35 ` [PATCH 08/15] clk: ti: omap4: cleanup unnecessary clock aliases Tero Kristo
2017-02-13 9:35 ` [PATCH 09/15] clk: ti: drop unnecessary MEMMAP_ADDRESSING flag Tero Kristo
2017-02-13 9:35 ` [PATCH 10/15] clk: ti: mux: convert TI mux clock to use its internal data representation Tero Kristo
2017-02-13 9:35 ` [PATCH 11/15] clk: ti: divider: convert TI divider clock to use its own " Tero Kristo
2017-02-13 9:35 ` [PATCH 12/15] clk: ti: divider: add driver internal API for parsing divider data Tero Kristo
2017-02-13 9:35 ` [PATCH 13/15] clk: ti: gate: export gate_clk_ops locally Tero Kristo
2017-02-13 9:35 ` [PATCH 14/15] clk: ti: dpll44xx: fix clksel register initialization Tero Kristo
2017-02-13 9:35 ` [PATCH 15/15] clk: ti: convert to use proper register definition for all accesses Tero Kristo
2017-03-02 17:51 ` [PATCH 00/15] clk: ti: cleanups / fixes for preparation of clkctrl clocks Tony Lindgren
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1486978511-29668-8-git-send-email-t-kristo@ti.com \
--to=t-kristo@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=sboyd@codeaurora.org \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox