From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>,
linux-clk@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
Takeshi Kihara <takeshi.kihara.df@renesas.com>
Subject: Re: [PATCH 08/13] clk: renesas: r8a77990: Correct parent clock of DU
Date: Thu, 29 Nov 2018 14:25:52 +0200 [thread overview]
Message-ID: <1579147.G3PS2VnPk8@avalon> (raw)
In-Reply-To: <20181129105008.10239-9-geert+renesas@glider.be>
Hi Geert,
Thank you for the patch.
On Thursday, 29 November 2018 12:50:03 EET Geert Uytterhoeven wrote:
> From: Takeshi Kihara <takeshi.kihara.df@renesas.com>
>
> According to the R-Car Gen3 Hardware Manual Rev 1.00, the parent clock
> of the DU module clocks on R-Car E3 is S1D1.
>
> Signed-off-by: Takeshi Kihara <takeshi.kihara.df@renesas.com>
> Fixes: 3570a2af473789c5 ("clk: renesas: cpg-mssr: Add support for R-Car E3")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---
> drivers/clk/renesas/r8a77990-cpg-mssr.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/clk/renesas/r8a77990-cpg-mssr.c
> b/drivers/clk/renesas/r8a77990-cpg-mssr.c index
> 9eb80180eea0b1a6..9a278c75c918cfa8 100644
> --- a/drivers/clk/renesas/r8a77990-cpg-mssr.c
> +++ b/drivers/clk/renesas/r8a77990-cpg-mssr.c
> @@ -183,8 +183,8 @@ static const struct mssr_mod_clk r8a77990_mod_clks[]
> __initconst = { DEF_MOD("ehci0", 703, R8A77990_CLK_S3D4),
> DEF_MOD("hsusb", 704, R8A77990_CLK_S3D4),
> DEF_MOD("csi40", 716, R8A77990_CLK_CSI0),
> - DEF_MOD("du1", 723, R8A77990_CLK_S2D1),
> - DEF_MOD("du0", 724, R8A77990_CLK_S2D1),
> + DEF_MOD("du1", 723, R8A77990_CLK_S1D1),
> + DEF_MOD("du0", 724, R8A77990_CLK_S1D1),
> DEF_MOD("lvds", 727, R8A77990_CLK_S2D1),
>
> DEF_MOD("vin5", 806, R8A77990_CLK_S1D2),
--
Regards,
Laurent Pinchart
next prev parent reply other threads:[~2018-11-29 12:25 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-29 10:49 [PATCH 00/13] clk: renesas: Miscellaneous fixes Geert Uytterhoeven
2018-11-29 10:49 ` [PATCH 01/13] dt-bindings: clock: r8a7795: Remove CSIREF clock Geert Uytterhoeven
2018-11-29 10:49 ` [PATCH 02/13] dt-bindings: clock: r8a7796: " Geert Uytterhoeven
2018-11-29 10:49 ` [PATCH 03/13] clk: renesas: r8a774a1: Add CPEX clock Geert Uytterhoeven
2018-11-29 10:49 ` [PATCH 04/13] clk: renesas: r8a7795: " Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 05/13] clk: renesas: r8a7796: " Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 06/13] clk: renesas: r8a77965: " Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 07/13] clk: renesas: r8a77970: " Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 08/13] clk: renesas: r8a77990: Correct parent clock of DU Geert Uytterhoeven
2018-11-29 12:25 ` Laurent Pinchart [this message]
2018-11-29 10:50 ` [PATCH 09/13] clk: renesas: r8a77995: " Geert Uytterhoeven
2018-11-29 12:28 ` Laurent Pinchart
2018-11-29 10:50 ` [PATCH 10/13] clk: renesas: r8a77995: Remove non-existent VIN5-7 module clocks Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 11/13] clk: renesas: r8a77995: Remove non-existent SSP clocks Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 12/13] clk: renesas: r8a77995: Add missing CPEX clock Geert Uytterhoeven
2018-11-29 10:50 ` [PATCH 13/13] clk: renesas: r8a77995: Simplify PLL3 multiplier/divider Geert Uytterhoeven
2018-11-29 12:31 ` [PATCH 00/13] clk: renesas: Miscellaneous fixes Laurent Pinchart
2018-11-29 21:49 ` Stephen Boyd
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=1579147.G3PS2VnPk8@avalon \
--to=laurent.pinchart@ideasonboard.com \
--cc=geert+renesas@glider.be \
--cc=kieran.bingham+renesas@ideasonboard.com \
--cc=linux-clk@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=sboyd@kernel.org \
--cc=takeshi.kihara.df@renesas.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 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.