diff mbox

[RESEND,04/12] drivers: clk: st: STiH407: Support for A9 MUX Clocks

Message ID 1401892320-18211-5-git-send-email-gabriel.fernandez@linaro.org (mailing list archive)
State New, archived
Headers show

Commit Message

Gabriel FERNANDEZ June 4, 2014, 2:31 p.m. UTC
The patch supports the A9-mux clocks used by ClockGenA9

Signed-off-by: Gabriel Fernandez <gabriel.fernandez@linaro.org>
Signed-off-by: Olivier Bideau <olivier.bideau@st.com>
---
 drivers/clk/st/clkgen-mux.c | 9 +++++++++
 1 file changed, 9 insertions(+)

Comments

Peter Griffin June 5, 2014, 8:55 a.m. UTC | #1
On Wed, 04 Jun 2014, Gabriel FERNANDEZ wrote:

> The patch supports the A9-mux clocks used by ClockGenA9
> 
> Signed-off-by: Gabriel Fernandez <gabriel.fernandez@linaro.org>
> Signed-off-by: Olivier Bideau <olivier.bideau@st.com>
> ---
>  drivers/clk/st/clkgen-mux.c | 9 +++++++++
>  1 file changed, 9 insertions(+)

Acked-by: Peter Griffin <peter.griffin@st.com>

Regards,

Peter
Peter Griffin June 5, 2014, 9 a.m. UTC | #2
On Thu, 05 Jun 2014, Peter Griffin wrote:

> On Wed, 04 Jun 2014, Gabriel FERNANDEZ wrote:
> 
> > The patch supports the A9-mux clocks used by ClockGenA9
> > 
> > Signed-off-by: Gabriel Fernandez <gabriel.fernandez@linaro.org>
> > Signed-off-by: Olivier Bideau <olivier.bideau@st.com>
> > ---
> >  drivers/clk/st/clkgen-mux.c | 9 +++++++++
> >  1 file changed, 9 insertions(+)
> 
> Acked-by: Peter Griffin <peter.griffin@st.com>

Sorry old habits die hard, that should have been

Acked-by: Peter Griffin <peter.griffin@linaro.org>

regards,

Peter.
diff mbox

Patch

diff --git a/drivers/clk/st/clkgen-mux.c b/drivers/clk/st/clkgen-mux.c
index a329906..9bdedc8 100644
--- a/drivers/clk/st/clkgen-mux.c
+++ b/drivers/clk/st/clkgen-mux.c
@@ -580,6 +580,11 @@  static struct clkgen_mux_data stih416_a9_mux_data = {
 	.shift = 0,
 	.width = 2,
 };
+static struct clkgen_mux_data stih407_a9_mux_data = {
+	.offset = 0x1a4,
+	.shift = 1,
+	.width = 2,
+};
 
 static struct of_device_id mux_of_match[] = {
 	{
@@ -610,6 +615,10 @@  static struct of_device_id mux_of_match[] = {
 		.compatible = "st,stih416-clkgen-a9-mux",
 		.data = &stih416_a9_mux_data,
 	},
+	{
+		.compatible = "st,stih407-clkgen-a9-mux",
+		.data = &stih407_a9_mux_data,
+	},
 	{}
 };