From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: linux-sh@vger.kernel.org
Subject: Re: [PATCH] ARM: mach-shmobile: rename clk_init() to shmobile_clk_init()
Date: Thu, 01 Mar 2012 21:21:14 +0000 [thread overview]
Message-ID: <201203012221.14287.rjw@sisk.pl> (raw)
In-Reply-To: <20120229124130.29066.74120.sendpatchset@w520>
On Wednesday, February 29, 2012, Magnus Damm wrote:
> From: Magnus Damm <damm@opensource.se>
>
> 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>
Paul, would you mind if I took this patchset into the renesas tree for v3.4?
Rafael
> ---
>
> arch/arm/mach-shmobile/clock-r8a7740.c | 2 +-
> arch/arm/mach-shmobile/clock-r8a7779.c | 2 +-
> arch/arm/mach-shmobile/clock-sh7367.c | 2 +-
> arch/arm/mach-shmobile/clock-sh7372.c | 2 +-
> arch/arm/mach-shmobile/clock-sh7377.c | 2 +-
> arch/arm/mach-shmobile/clock-sh73a0.c | 2 +-
> arch/arm/mach-shmobile/clock.c | 2 +-
> arch/arm/mach-shmobile/include/mach/common.h | 2 +-
> 8 files changed, 8 insertions(+), 8 deletions(-)
>
> --- 0015/arch/arm/mach-shmobile/clock-r8a7740.c
> +++ work/arch/arm/mach-shmobile/clock-r8a7740.c 2012-02-29 20:59:39.000000000 +0900
> @@ -376,7 +376,7 @@ void __init r8a7740_clock_init(u8 md_ck)
> clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>
> if (!ret)
> - clk_init();
> + shmobile_clk_init();
> else
> panic("failed to setup r8a7740 clocks\n");
> }
> --- 0016/arch/arm/mach-shmobile/clock-r8a7779.c
> +++ work/arch/arm/mach-shmobile/clock-r8a7779.c 2012-02-29 20:59:53.000000000 +0900
> @@ -170,7 +170,7 @@ void __init r8a7779_clock_init(void)
> clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>
> if (!ret)
> - clk_init();
> + shmobile_clk_init();
> else
> panic("failed to setup r8a7779 clocks\n");
> }
> --- 0014/arch/arm/mach-shmobile/clock-sh7367.c
> +++ work/arch/arm/mach-shmobile/clock-sh7367.c 2012-02-29 21:00:12.000000000 +0900
> @@ -349,7 +349,7 @@ void __init sh7367_clock_init(void)
> clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>
> if (!ret)
> - clk_init();
> + shmobile_clk_init();
> else
> panic("failed to setup sh7367 clocks\n");
> }
> --- 0012/arch/arm/mach-shmobile/clock-sh7372.c
> +++ work/arch/arm/mach-shmobile/clock-sh7372.c 2012-02-29 21:00:34.000000000 +0900
> @@ -710,7 +710,7 @@ void __init sh7372_clock_init(void)
> clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>
> if (!ret)
> - clk_init();
> + shmobile_clk_init();
> else
> panic("failed to setup sh7372 clocks\n");
>
> --- 0013/arch/arm/mach-shmobile/clock-sh7377.c
> +++ work/arch/arm/mach-shmobile/clock-sh7377.c 2012-02-29 21:00:25.000000000 +0900
> @@ -360,7 +360,7 @@ void __init sh7377_clock_init(void)
> clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>
> if (!ret)
> - clk_init();
> + shmobile_clk_init();
> else
> panic("failed to setup sh7377 clocks\n");
> }
> --- 0011/arch/arm/mach-shmobile/clock-sh73a0.c
> +++ work/arch/arm/mach-shmobile/clock-sh73a0.c 2012-02-29 21:00:48.000000000 +0900
> @@ -620,7 +620,7 @@ void __init sh73a0_clock_init(void)
> clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>
> if (!ret)
> - clk_init();
> + shmobile_clk_init();
> else
> panic("failed to setup sh73a0 clocks\n");
> }
> --- 0001/arch/arm/mach-shmobile/clock.c
> +++ work/arch/arm/mach-shmobile/clock.c 2012-02-29 20:58:43.000000000 +0900
> @@ -24,7 +24,7 @@
> #include <linux/sh_clk.h>
> #include <linux/export.h>
>
> -int __init clk_init(void)
> +int __init shmobile_clk_init(void)
> {
> /* Kick the child clocks.. */
> recalculate_root_clocks();
> --- 0008/arch/arm/mach-shmobile/include/mach/common.h
> +++ work/arch/arm/mach-shmobile/include/mach/common.h 2012-02-29 20:59:15.000000000 +0900
> @@ -6,7 +6,7 @@ extern void shmobile_setup_console(void)
> extern void shmobile_secondary_vector(void);
> extern int shmobile_platform_cpu_kill(unsigned int cpu);
> struct clk;
> -extern int clk_init(void);
> +extern int shmobile_clk_init(void);
> extern void shmobile_handle_irq_intc(struct pt_regs *);
> extern struct platform_suspend_ops shmobile_suspend_ops;
> struct cpuidle_driver;
>
>
next prev parent reply other threads:[~2012-03-01 21:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-29 12:41 [PATCH] ARM: mach-shmobile: rename clk_init() to shmobile_clk_init() Magnus Damm
2012-03-01 21:21 ` Rafael J. Wysocki [this message]
2012-03-07 21:58 ` Rafael J. Wysocki
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=201203012221.14287.rjw@sisk.pl \
--to=rjw@sisk.pl \
--cc=linux-sh@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).