diff mbox series

drivers: clk: sifive: fu740-prci: replace 'pciaux' with 'pcieaux'

Message ID 20210628111308.21325-1-green.wan@sifive.com
State Accepted
Commit 3517ebc87e72ecd07c86f1a05362f26599e9ce0f
Delegated to: Andes
Headers show
Series drivers: clk: sifive: fu740-prci: replace 'pciaux' with 'pcieaux' | expand

Commit Message

Green Wan June 28, 2021, 11:13 a.m. UTC
Replace 'pciaux' with 'pcieaux', including name string and function
prefix. The old name string, 'pciaux', might cause an error if PCIe
driver is changed to use clk_get_by_name() with 'pcieaux' to get
clock.

Signed-off-by: Green Wan <green.wan@sifive.com>
---
 drivers/clk/sifive/fu740-prci.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Comments

Leo Liang June 28, 2021, 11:42 a.m. UTC | #1
On Mon, Jun 28, 2021 at 07:13:08PM +0800, Green Wan wrote:
> Replace 'pciaux' with 'pcieaux', including name string and function
> prefix. The old name string, 'pciaux', might cause an error if PCIe
> driver is changed to use clk_get_by_name() with 'pcieaux' to get
> clock.
> 
> Signed-off-by: Green Wan <green.wan@sifive.com>
> ---
>  drivers/clk/sifive/fu740-prci.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)

Reviewed-by: Leo Yu-Chi Liang <ycliang@andestech.com>
diff mbox series

Patch

diff --git a/drivers/clk/sifive/fu740-prci.c b/drivers/clk/sifive/fu740-prci.c
index 9a642c1c99..b025050e22 100644
--- a/drivers/clk/sifive/fu740-prci.c
+++ b/drivers/clk/sifive/fu740-prci.c
@@ -20,7 +20,7 @@ 
 #include "sifive-prci.h"
 #include <asm/io.h>
 
-int sifive_prci_fu740_pciauxclk_enable(struct __prci_clock *pc, bool enable)
+int sifive_prci_fu740_pcieauxclk_enable(struct __prci_clock *pc, bool enable)
 {
 	struct __prci_wrpll_data *pwd = pc->pwd;
 	struct __prci_data *pd = pc->pd;
@@ -98,7 +98,7 @@  static const struct __prci_clock_ops sifive_fu740_prci_hfpclkplldiv_clk_ops = {
 };
 
 static const struct __prci_clock_ops sifive_fu740_prci_pcieaux_clk_ops = {
-	.enable_clk = sifive_prci_fu740_pciauxclk_enable,
+	.enable_clk = sifive_prci_fu740_pcieauxclk_enable,
 };
 
 /* List of clock controls provided by the PRCI */
@@ -150,7 +150,7 @@  struct __prci_clock __prci_init_clocks_fu740[] = {
 		.ops = &sifive_fu740_prci_hfpclkplldiv_clk_ops,
 	},
 	[PRCI_CLK_PCIEAUX] {
-		.name = "pciaux",
+		.name = "pcieaux",
 		.parent_name = "",
 		.ops = &sifive_fu740_prci_pcieaux_clk_ops,
 		.pwd = &__prci_pcieaux_data,