All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: samsung: exynos5433: Correct typos in SoC name
       [not found] <CGME20170126124348eucas1p19cd1a8f28f657f523ac46b48bf699674@eucas1p1.samsung.com>
@ 2017-01-26 12:43 ` Marek Szyprowski
  2017-01-26 14:31   ` Chanwoo Choi
  2017-01-26 19:08   ` Krzysztof Kozlowski
  0 siblings, 2 replies; 3+ messages in thread
From: Marek Szyprowski @ 2017-01-26 12:43 UTC (permalink / raw)
  To: linux-samsung-soc
  Cc: Marek Szyprowski, Sylwester Nawrocki, Krzysztof Kozlowski,
	Bartlomiej Zolnierkiewicz, Chanwoo Choi

This patch fixes simple typos in Exynos5433 clocks driver. The SoC name
was refered a few times as '5443' instead of '5433'.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
---
 drivers/clk/samsung/clk-exynos5433.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/drivers/clk/samsung/clk-exynos5433.c b/drivers/clk/samsung/clk-exynos5433.c
index 0db5204c307c..8fd7f6e88e3c 100644
--- a/drivers/clk/samsung/clk-exynos5433.c
+++ b/drivers/clk/samsung/clk-exynos5433.c
@@ -6,7 +6,7 @@
  * it under the terms of the GNU General Public License version 2 as
  * published by the Free Software Foundation.
  *
- * Common Clock Framework support for Exynos5443 SoC.
+ * Common Clock Framework support for Exynos5433 SoC.
  */
 
 #include <linux/clk-provider.h>
@@ -698,7 +698,7 @@
  * ATLAS_PLL & APOLLO_PLL & MEM0_PLL & MEM1_PLL & BUS_PLL & MFC_PLL
  * & MPHY_PLL & G3D_PLL & DISP_PLL & ISP_PLL
  */
-static const struct samsung_pll_rate_table exynos5443_pll_rates[] __initconst = {
+static const struct samsung_pll_rate_table exynos5433_pll_rates[] __initconst = {
 	PLL_35XX_RATE(2500000000U, 625, 6,  0),
 	PLL_35XX_RATE(2400000000U, 500, 5,  0),
 	PLL_35XX_RATE(2300000000U, 575, 6,  0),
@@ -749,7 +749,7 @@
 };
 
 /* AUD_PLL */
-static const struct samsung_pll_rate_table exynos5443_aud_pll_rates[] __initconst = {
+static const struct samsung_pll_rate_table exynos5433_aud_pll_rates[] __initconst = {
 	PLL_36XX_RATE(400000000U, 200, 3, 2,      0),
 	PLL_36XX_RATE(393216000U, 197, 3, 2, -25690),
 	PLL_36XX_RATE(384000000U, 128, 2, 2,      0),
@@ -764,9 +764,9 @@
 
 static const struct samsung_pll_clock top_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_ISP_PLL, "fout_isp_pll", "oscclk",
-		ISP_PLL_LOCK, ISP_PLL_CON0, exynos5443_pll_rates),
+		ISP_PLL_LOCK, ISP_PLL_CON0, exynos5433_pll_rates),
 	PLL(pll_36xx, CLK_FOUT_AUD_PLL, "fout_aud_pll", "oscclk",
-		AUD_PLL_LOCK, AUD_PLL_CON0, exynos5443_aud_pll_rates),
+		AUD_PLL_LOCK, AUD_PLL_CON0, exynos5433_aud_pll_rates),
 };
 
 static const struct samsung_cmu_info top_cmu_info __initconst = {
@@ -820,7 +820,7 @@ static void __init exynos5433_cmu_top_init(struct device_node *np)
 
 static const struct samsung_pll_clock cpif_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_MPHY_PLL, "fout_mphy_pll", "oscclk",
-		MPHY_PLL_LOCK, MPHY_PLL_CON0, exynos5443_pll_rates),
+		MPHY_PLL_LOCK, MPHY_PLL_CON0, exynos5433_pll_rates),
 };
 
 static const struct samsung_mux_clock cpif_mux_clks[] __initconst = {
@@ -1011,13 +1011,13 @@ static void __init exynos5433_cmu_cpif_init(struct device_node *np)
 
 static const struct samsung_pll_clock mif_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_MEM0_PLL, "fout_mem0_pll", "oscclk",
-		MEM0_PLL_LOCK, MEM0_PLL_CON0, exynos5443_pll_rates),
+		MEM0_PLL_LOCK, MEM0_PLL_CON0, exynos5433_pll_rates),
 	PLL(pll_35xx, CLK_FOUT_MEM1_PLL, "fout_mem1_pll", "oscclk",
-		MEM1_PLL_LOCK, MEM1_PLL_CON0, exynos5443_pll_rates),
+		MEM1_PLL_LOCK, MEM1_PLL_CON0, exynos5433_pll_rates),
 	PLL(pll_35xx, CLK_FOUT_BUS_PLL, "fout_bus_pll", "oscclk",
-		BUS_PLL_LOCK, BUS_PLL_CON0, exynos5443_pll_rates),
+		BUS_PLL_LOCK, BUS_PLL_CON0, exynos5433_pll_rates),
 	PLL(pll_35xx, CLK_FOUT_MFC_PLL, "fout_mfc_pll", "oscclk",
-		MFC_PLL_LOCK, MFC_PLL_CON0, exynos5443_pll_rates),
+		MFC_PLL_LOCK, MFC_PLL_CON0, exynos5433_pll_rates),
 };
 
 /* list of all parent clock list */
@@ -2539,7 +2539,7 @@ static void __init exynos5433_cmu_g2d_init(struct device_node *np)
 
 static const struct samsung_pll_clock disp_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_DISP_PLL, "fout_disp_pll", "oscclk",
-		DISP_PLL_LOCK, DISP_PLL_CON0, exynos5443_pll_rates),
+		DISP_PLL_LOCK, DISP_PLL_CON0, exynos5433_pll_rates),
 };
 
 static const struct samsung_fixed_factor_clock disp_fixed_factor_clks[] __initconst = {
@@ -3224,7 +3224,7 @@ static void __init exynos5433_cmu_aud_init(struct device_node *np)
 
 static const struct samsung_pll_clock g3d_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_G3D_PLL, "fout_g3d_pll", "oscclk",
-		G3D_PLL_LOCK, G3D_PLL_CON0, exynos5443_pll_rates),
+		G3D_PLL_LOCK, G3D_PLL_CON0, exynos5433_pll_rates),
 };
 
 static const struct samsung_mux_clock g3d_mux_clks[] __initconst = {
@@ -3514,7 +3514,7 @@ static void __init exynos5433_cmu_gscl_init(struct device_node *np)
 
 static const struct samsung_pll_clock apollo_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_APOLLO_PLL, "fout_apollo_pll", "oscclk",
-		APOLLO_PLL_LOCK, APOLLO_PLL_CON0, exynos5443_pll_rates),
+		APOLLO_PLL_LOCK, APOLLO_PLL_CON0, exynos5433_pll_rates),
 };
 
 static const struct samsung_mux_clock apollo_mux_clks[] __initconst = {
@@ -3737,7 +3737,7 @@ static void __init exynos5433_cmu_apollo_init(struct device_node *np)
 
 static const struct samsung_pll_clock atlas_pll_clks[] __initconst = {
 	PLL(pll_35xx, CLK_FOUT_ATLAS_PLL, "fout_atlas_pll", "oscclk",
-		ATLAS_PLL_LOCK, ATLAS_PLL_CON0, exynos5443_pll_rates),
+		ATLAS_PLL_LOCK, ATLAS_PLL_CON0, exynos5433_pll_rates),
 };
 
 static const struct samsung_mux_clock atlas_mux_clks[] __initconst = {
-- 
1.9.1

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

* Re: [PATCH] clk: samsung: exynos5433: Correct typos in SoC name
  2017-01-26 12:43 ` [PATCH] clk: samsung: exynos5433: Correct typos in SoC name Marek Szyprowski
@ 2017-01-26 14:31   ` Chanwoo Choi
  2017-01-26 19:08   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 3+ messages in thread
From: Chanwoo Choi @ 2017-01-26 14:31 UTC (permalink / raw)
  To: Marek Szyprowski
  Cc: linux-samsung-soc, Sylwester Nawrocki, Krzysztof Kozlowski,
	Bartlomiej Zolnierkiewicz, Chanwoo Choi

Hi Marek,

Thanks for fixup.

Acked-by: Chanwoo Choi <cw00.choi@samsung.com>

2017-01-26 21:43 GMT+09:00 Marek Szyprowski <m.szyprowski@samsung.com>:
> This patch fixes simple typos in Exynos5433 clocks driver. The SoC name
> was refered a few times as '5443' instead of '5433'.
>
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
>  drivers/clk/samsung/clk-exynos5433.c | 28 ++++++++++++++--------------
>  1 file changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/clk/samsung/clk-exynos5433.c b/drivers/clk/samsung/clk-exynos5433.c
> index 0db5204c307c..8fd7f6e88e3c 100644
> --- a/drivers/clk/samsung/clk-exynos5433.c
> +++ b/drivers/clk/samsung/clk-exynos5433.c
> @@ -6,7 +6,7 @@
>   * it under the terms of the GNU General Public License version 2 as
>   * published by the Free Software Foundation.
>   *
> - * Common Clock Framework support for Exynos5443 SoC.
> + * Common Clock Framework support for Exynos5433 SoC.
>   */
>
>  #include <linux/clk-provider.h>
> @@ -698,7 +698,7 @@
>   * ATLAS_PLL & APOLLO_PLL & MEM0_PLL & MEM1_PLL & BUS_PLL & MFC_PLL
>   * & MPHY_PLL & G3D_PLL & DISP_PLL & ISP_PLL
>   */
> -static const struct samsung_pll_rate_table exynos5443_pll_rates[] __initconst = {
> +static const struct samsung_pll_rate_table exynos5433_pll_rates[] __initconst = {
>         PLL_35XX_RATE(2500000000U, 625, 6,  0),
>         PLL_35XX_RATE(2400000000U, 500, 5,  0),
>         PLL_35XX_RATE(2300000000U, 575, 6,  0),
> @@ -749,7 +749,7 @@
>  };
>
>  /* AUD_PLL */
> -static const struct samsung_pll_rate_table exynos5443_aud_pll_rates[] __initconst = {
> +static const struct samsung_pll_rate_table exynos5433_aud_pll_rates[] __initconst = {
>         PLL_36XX_RATE(400000000U, 200, 3, 2,      0),
>         PLL_36XX_RATE(393216000U, 197, 3, 2, -25690),
>         PLL_36XX_RATE(384000000U, 128, 2, 2,      0),
> @@ -764,9 +764,9 @@
>
>  static const struct samsung_pll_clock top_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_ISP_PLL, "fout_isp_pll", "oscclk",
> -               ISP_PLL_LOCK, ISP_PLL_CON0, exynos5443_pll_rates),
> +               ISP_PLL_LOCK, ISP_PLL_CON0, exynos5433_pll_rates),
>         PLL(pll_36xx, CLK_FOUT_AUD_PLL, "fout_aud_pll", "oscclk",
> -               AUD_PLL_LOCK, AUD_PLL_CON0, exynos5443_aud_pll_rates),
> +               AUD_PLL_LOCK, AUD_PLL_CON0, exynos5433_aud_pll_rates),
>  };
>
>  static const struct samsung_cmu_info top_cmu_info __initconst = {
> @@ -820,7 +820,7 @@ static void __init exynos5433_cmu_top_init(struct device_node *np)
>
>  static const struct samsung_pll_clock cpif_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_MPHY_PLL, "fout_mphy_pll", "oscclk",
> -               MPHY_PLL_LOCK, MPHY_PLL_CON0, exynos5443_pll_rates),
> +               MPHY_PLL_LOCK, MPHY_PLL_CON0, exynos5433_pll_rates),
>  };
>
>  static const struct samsung_mux_clock cpif_mux_clks[] __initconst = {
> @@ -1011,13 +1011,13 @@ static void __init exynos5433_cmu_cpif_init(struct device_node *np)
>
>  static const struct samsung_pll_clock mif_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_MEM0_PLL, "fout_mem0_pll", "oscclk",
> -               MEM0_PLL_LOCK, MEM0_PLL_CON0, exynos5443_pll_rates),
> +               MEM0_PLL_LOCK, MEM0_PLL_CON0, exynos5433_pll_rates),
>         PLL(pll_35xx, CLK_FOUT_MEM1_PLL, "fout_mem1_pll", "oscclk",
> -               MEM1_PLL_LOCK, MEM1_PLL_CON0, exynos5443_pll_rates),
> +               MEM1_PLL_LOCK, MEM1_PLL_CON0, exynos5433_pll_rates),
>         PLL(pll_35xx, CLK_FOUT_BUS_PLL, "fout_bus_pll", "oscclk",
> -               BUS_PLL_LOCK, BUS_PLL_CON0, exynos5443_pll_rates),
> +               BUS_PLL_LOCK, BUS_PLL_CON0, exynos5433_pll_rates),
>         PLL(pll_35xx, CLK_FOUT_MFC_PLL, "fout_mfc_pll", "oscclk",
> -               MFC_PLL_LOCK, MFC_PLL_CON0, exynos5443_pll_rates),
> +               MFC_PLL_LOCK, MFC_PLL_CON0, exynos5433_pll_rates),
>  };
>
>  /* list of all parent clock list */
> @@ -2539,7 +2539,7 @@ static void __init exynos5433_cmu_g2d_init(struct device_node *np)
>
>  static const struct samsung_pll_clock disp_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_DISP_PLL, "fout_disp_pll", "oscclk",
> -               DISP_PLL_LOCK, DISP_PLL_CON0, exynos5443_pll_rates),
> +               DISP_PLL_LOCK, DISP_PLL_CON0, exynos5433_pll_rates),
>  };
>
>  static const struct samsung_fixed_factor_clock disp_fixed_factor_clks[] __initconst = {
> @@ -3224,7 +3224,7 @@ static void __init exynos5433_cmu_aud_init(struct device_node *np)
>
>  static const struct samsung_pll_clock g3d_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_G3D_PLL, "fout_g3d_pll", "oscclk",
> -               G3D_PLL_LOCK, G3D_PLL_CON0, exynos5443_pll_rates),
> +               G3D_PLL_LOCK, G3D_PLL_CON0, exynos5433_pll_rates),
>  };
>
>  static const struct samsung_mux_clock g3d_mux_clks[] __initconst = {
> @@ -3514,7 +3514,7 @@ static void __init exynos5433_cmu_gscl_init(struct device_node *np)
>
>  static const struct samsung_pll_clock apollo_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_APOLLO_PLL, "fout_apollo_pll", "oscclk",
> -               APOLLO_PLL_LOCK, APOLLO_PLL_CON0, exynos5443_pll_rates),
> +               APOLLO_PLL_LOCK, APOLLO_PLL_CON0, exynos5433_pll_rates),
>  };
>
>  static const struct samsung_mux_clock apollo_mux_clks[] __initconst = {
> @@ -3737,7 +3737,7 @@ static void __init exynos5433_cmu_apollo_init(struct device_node *np)
>
>  static const struct samsung_pll_clock atlas_pll_clks[] __initconst = {
>         PLL(pll_35xx, CLK_FOUT_ATLAS_PLL, "fout_atlas_pll", "oscclk",
> -               ATLAS_PLL_LOCK, ATLAS_PLL_CON0, exynos5443_pll_rates),
> +               ATLAS_PLL_LOCK, ATLAS_PLL_CON0, exynos5433_pll_rates),
>  };
>
>  static const struct samsung_mux_clock atlas_mux_clks[] __initconst = {
> --
> 1.9.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Best Regards,
Chanwoo Choi
Samsung Electronics

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

* Re: [PATCH] clk: samsung: exynos5433: Correct typos in SoC name
  2017-01-26 12:43 ` [PATCH] clk: samsung: exynos5433: Correct typos in SoC name Marek Szyprowski
  2017-01-26 14:31   ` Chanwoo Choi
@ 2017-01-26 19:08   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 3+ messages in thread
From: Krzysztof Kozlowski @ 2017-01-26 19:08 UTC (permalink / raw)
  To: Marek Szyprowski
  Cc: linux-samsung-soc, Sylwester Nawrocki, Bartlomiej Zolnierkiewicz,
	Chanwoo Choi

On Thu, Jan 26, 2017 at 01:43:42PM +0100, Marek Szyprowski wrote:
> This patch fixes simple typos in Exynos5433 clocks driver. The SoC name
> was refered a few times as '5443' instead of '5433'.
> 
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
>  drivers/clk/samsung/clk-exynos5433.c | 28 ++++++++++++++--------------
>  1 file changed, 14 insertions(+), 14 deletions(-)
> 

Reviewed-by: Krzysztof Kozlowski <krzk@kernel.org>

Best regards,
Krzysztof

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

end of thread, other threads:[~2017-01-26 19:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20170126124348eucas1p19cd1a8f28f657f523ac46b48bf699674@eucas1p1.samsung.com>
2017-01-26 12:43 ` [PATCH] clk: samsung: exynos5433: Correct typos in SoC name Marek Szyprowski
2017-01-26 14:31   ` Chanwoo Choi
2017-01-26 19:08   ` Krzysztof Kozlowski

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.