linux-sh.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Rafael J. Wysocki" <rjw@sisk.pl>
To: linux-sh@vger.kernel.org
Subject: Re: [PATCH 2/3] ARM: mach-shmobile: Convert sh_clk_mstp32_register to sh_clk_mstp_register
Date: Mon, 02 Jul 2012 21:59:25 +0000	[thread overview]
Message-ID: <201207030001.13310.rjw@sisk.pl> (raw)
In-Reply-To: <Pine.LNX.4.64.1204162306540.29915@axis700.grange>

On Wednesday, June 27, 2012, Nobuhiro Iwamatsu wrote:
> sh_clk_mstp32_register is deprecated. This convert to sh_clk_mstp_register.
> 
> Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>

Applied to the soc-core branch of the renesas.git tree.

Thanks,
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 +-
>  6 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/mach-shmobile/clock-r8a7740.c b/arch/arm/mach-shmobile/clock-r8a7740.c
> index 26eea5f..29c397a 100644
> --- a/arch/arm/mach-shmobile/clock-r8a7740.c
> +++ b/arch/arm/mach-shmobile/clock-r8a7740.c
> @@ -495,7 +495,7 @@ void __init r8a7740_clock_init(u8 md_ck)
>  		ret = sh_clk_div6_register(div6_clks, DIV6_NR);
>  
>  	if (!ret)
> -		ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
> +		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
>  
>  	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>  
> diff --git a/arch/arm/mach-shmobile/clock-r8a7779.c b/arch/arm/mach-shmobile/clock-r8a7779.c
> index 7d6e9fe4..339c62c 100644
> --- a/arch/arm/mach-shmobile/clock-r8a7779.c
> +++ b/arch/arm/mach-shmobile/clock-r8a7779.c
> @@ -162,7 +162,7 @@ void __init r8a7779_clock_init(void)
>  		ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
>  
>  	if (!ret)
> -		ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
> +		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
>  
>  	for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
>  		ret = clk_register(late_main_clks[k]);
> diff --git a/arch/arm/mach-shmobile/clock-sh7367.c b/arch/arm/mach-shmobile/clock-sh7367.c
> index 006e7b5..162b791 100644
> --- a/arch/arm/mach-shmobile/clock-sh7367.c
> +++ b/arch/arm/mach-shmobile/clock-sh7367.c
> @@ -344,7 +344,7 @@ void __init sh7367_clock_init(void)
>  		ret = sh_clk_div6_register(div6_clks, DIV6_NR);
>  
>  	if (!ret)
> -		ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
> +		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
>  
>  	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>  
> diff --git a/arch/arm/mach-shmobile/clock-sh7372.c b/arch/arm/mach-shmobile/clock-sh7372.c
> index 94d1f88..5a2894b 100644
> --- a/arch/arm/mach-shmobile/clock-sh7372.c
> +++ b/arch/arm/mach-shmobile/clock-sh7372.c
> @@ -704,7 +704,7 @@ void __init sh7372_clock_init(void)
>  		ret = sh_clk_div6_reparent_register(div6_reparent_clks, DIV6_REPARENT_NR);
>  
>  	if (!ret)
> -		ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
> +		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
>  
>  	for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
>  		ret = clk_register(late_main_clks[k]);
> diff --git a/arch/arm/mach-shmobile/clock-sh7377.c b/arch/arm/mach-shmobile/clock-sh7377.c
> index 0798a15..85f2a3e 100644
> --- a/arch/arm/mach-shmobile/clock-sh7377.c
> +++ b/arch/arm/mach-shmobile/clock-sh7377.c
> @@ -355,7 +355,7 @@ void __init sh7377_clock_init(void)
>  		ret = sh_clk_div6_register(div6_clks, DIV6_NR);
>  
>  	if (!ret)
> -		ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
> +		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
>  
>  	clkdev_add_table(lookups, ARRAY_SIZE(lookups));
>  
> diff --git a/arch/arm/mach-shmobile/clock-sh73a0.c b/arch/arm/mach-shmobile/clock-sh73a0.c
> index 472d1f5..f6788be 100644
> --- a/arch/arm/mach-shmobile/clock-sh73a0.c
> +++ b/arch/arm/mach-shmobile/clock-sh73a0.c
> @@ -612,7 +612,7 @@ void __init sh73a0_clock_init(void)
>  		ret = sh_clk_div6_reparent_register(div6_clks, DIV6_NR);
>  
>  	if (!ret)
> -		ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR);
> +		ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
>  
>  	for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
>  		ret = clk_register(late_main_clks[k]);
> 


      parent reply	other threads:[~2012-07-02 21:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-16 21:09 [PATCH 2/3] ARM: mach-shmobile: convert mackerel to use the generic MMC GPIO hotplug helper Guennadi Liakhovetski
2012-06-27  0:59 ` [PATCH 2/3] ARM: mach-shmobile: Convert sh_clk_mstp32_register to sh_clk_mstp_register Nobuhiro Iwamatsu
2012-06-27  0:59 ` Nobuhiro Iwamatsu
2012-07-02 21:59 ` Rafael J. Wysocki [this message]

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=201207030001.13310.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).