Răsfoiți Sursa

ARM: mach-shmobile: rename clk_init() to shmobile_clk_init()

Rename clk_init() to shmobile_clk_init() to avoid a potential
future name space collision with the common clock framework.

Signed-off-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Magnus Damm 13 ani în urmă
părinte
comite
6b6a4c067c

+ 1 - 1
arch/arm/mach-shmobile/clock-r8a7740.c

@@ -376,7 +376,7 @@ void __init r8a7740_clock_init(u8 md_ck)
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 
 
 	if (!ret)
 	if (!ret)
-		clk_init();
+		shmobile_clk_init();
 	else
 	else
 		panic("failed to setup r8a7740 clocks\n");
 		panic("failed to setup r8a7740 clocks\n");
 }
 }

+ 1 - 1
arch/arm/mach-shmobile/clock-r8a7779.c

@@ -170,7 +170,7 @@ void __init r8a7779_clock_init(void)
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 
 
 	if (!ret)
 	if (!ret)
-		clk_init();
+		shmobile_clk_init();
 	else
 	else
 		panic("failed to setup r8a7779 clocks\n");
 		panic("failed to setup r8a7779 clocks\n");
 }
 }

+ 1 - 1
arch/arm/mach-shmobile/clock-sh7367.c

@@ -349,7 +349,7 @@ void __init sh7367_clock_init(void)
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 
 
 	if (!ret)
 	if (!ret)
-		clk_init();
+		shmobile_clk_init();
 	else
 	else
 		panic("failed to setup sh7367 clocks\n");
 		panic("failed to setup sh7367 clocks\n");
 }
 }

+ 1 - 1
arch/arm/mach-shmobile/clock-sh7372.c

@@ -710,7 +710,7 @@ void __init sh7372_clock_init(void)
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 
 
 	if (!ret)
 	if (!ret)
-		clk_init();
+		shmobile_clk_init();
 	else
 	else
 		panic("failed to setup sh7372 clocks\n");
 		panic("failed to setup sh7372 clocks\n");
 
 

+ 1 - 1
arch/arm/mach-shmobile/clock-sh7377.c

@@ -360,7 +360,7 @@ void __init sh7377_clock_init(void)
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 
 
 	if (!ret)
 	if (!ret)
-		clk_init();
+		shmobile_clk_init();
 	else
 	else
 		panic("failed to setup sh7377 clocks\n");
 		panic("failed to setup sh7377 clocks\n");
 }
 }

+ 1 - 1
arch/arm/mach-shmobile/clock-sh73a0.c

@@ -620,7 +620,7 @@ void __init sh73a0_clock_init(void)
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
 
 
 	if (!ret)
 	if (!ret)
-		clk_init();
+		shmobile_clk_init();
 	else
 	else
 		panic("failed to setup sh73a0 clocks\n");
 		panic("failed to setup sh73a0 clocks\n");
 }
 }

+ 1 - 1
arch/arm/mach-shmobile/clock.c

@@ -24,7 +24,7 @@
 #include <linux/sh_clk.h>
 #include <linux/sh_clk.h>
 #include <linux/export.h>
 #include <linux/export.h>
 
 
-int __init clk_init(void)
+int __init shmobile_clk_init(void)
 {
 {
 	/* Kick the child clocks.. */
 	/* Kick the child clocks.. */
 	recalculate_root_clocks();
 	recalculate_root_clocks();

+ 1 - 1
arch/arm/mach-shmobile/include/mach/common.h

@@ -6,7 +6,7 @@ extern void shmobile_setup_console(void);
 extern void shmobile_secondary_vector(void);
 extern void shmobile_secondary_vector(void);
 extern int shmobile_platform_cpu_kill(unsigned int cpu);
 extern int shmobile_platform_cpu_kill(unsigned int cpu);
 struct clk;
 struct clk;
-extern int clk_init(void);
+extern int shmobile_clk_init(void);
 extern void shmobile_handle_irq_intc(struct pt_regs *);
 extern void shmobile_handle_irq_intc(struct pt_regs *);
 extern struct platform_suspend_ops shmobile_suspend_ops;
 extern struct platform_suspend_ops shmobile_suspend_ops;
 struct cpuidle_driver;
 struct cpuidle_driver;