From: Kuninori Morimoto Date: Wed, 6 Aug 2014 01:24:00 +0000 (+0900) Subject: clk: shmobile: add missing 0x0100 for SDCKCR X-Git-Tag: v3.18-rc1~39^2~41 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4abe240878db394b399a12a63f01324bcd65c547;p=~emulex%2Finfiniband.git clk: shmobile: add missing 0x0100 for SDCKCR 10cdfe9f327ab8d120cf6957e58c6203e3a53847 (clk: shmobile: Add R-Car Gen2 clocks support) added R-Car Gen2 clock support via DT for v3.14. But, cpg_sd01_div_table is missing "0x0100: x 1/8" division ratio. This patch fixes hidden bug. It is based on R-Car H2 v0.7, R-Car M2 v0.9. Acked-by: Geert Uytterhoeven Acked-by: Laurent Pinchart Acked-by: Simon Horman Reported-by: Yusuke Goda Signed-off-by: Kuninori Morimoto Signed-off-by: Mike Turquette --- diff --git a/drivers/clk/shmobile/clk-rcar-gen2.c b/drivers/clk/shmobile/clk-rcar-gen2.c index dff7f79a19b..e996425d06a 100644 --- a/drivers/clk/shmobile/clk-rcar-gen2.c +++ b/drivers/clk/shmobile/clk-rcar-gen2.c @@ -202,6 +202,7 @@ static const struct clk_div_table cpg_sdh_div_table[] = { }; static const struct clk_div_table cpg_sd01_div_table[] = { + { 4, 8 }, { 5, 12 }, { 6, 16 }, { 7, 18 }, { 8, 24 }, { 10, 36 }, { 11, 48 }, { 12, 10 }, { 0, 0 }, };