linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] A DaVinci SoC update for v3.14
@ 2014-01-10 11:26 Sekhar Nori
  2014-01-16 21:54 ` Kevin Hilman
  0 siblings, 1 reply; 2+ messages in thread
From: Sekhar Nori @ 2014-01-10 11:26 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae:

  Linux 3.13-rc1 (2013-11-22 11:30:55 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v3.14/soc

for you to fetch changes up to 4408c26bc37fa8ada493ad41a6c7659b76fff483:

  ARM: davinci: clock: return 0 upon error from clk_round_rate() (2013-11-27 14:48:33 +0530)

----------------------------------------------------------------
A patch to fix the return value of clk_round_rate()

----------------------------------------------------------------
Paul Walmsley (1):
      ARM: davinci: clock: return 0 upon error from clk_round_rate()

 arch/arm/mach-davinci/clock.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-davinci/clock.c b/arch/arm/mach-davinci/clock.c
index dc9a470..985e5fd 100644
--- a/arch/arm/mach-davinci/clock.c
+++ b/arch/arm/mach-davinci/clock.c
@@ -133,7 +133,7 @@ EXPORT_SYMBOL(clk_get_rate);
 long clk_round_rate(struct clk *clk, unsigned long rate)
 {
 	if (clk == NULL || IS_ERR(clk))
-		return -EINVAL;
+		return 0;
 
 	if (clk->round_rate)
 		return clk->round_rate(clk, rate);

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

* [GIT PULL] A DaVinci SoC update for v3.14
  2014-01-10 11:26 [GIT PULL] A DaVinci SoC update for v3.14 Sekhar Nori
@ 2014-01-16 21:54 ` Kevin Hilman
  0 siblings, 0 replies; 2+ messages in thread
From: Kevin Hilman @ 2014-01-16 21:54 UTC (permalink / raw)
  To: linux-arm-kernel

Sekhar Nori <nsekhar@ti.com> writes:

> The following changes since commit 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae:
>
>   Linux 3.13-rc1 (2013-11-22 11:30:55 -0800)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git tags/davinci-for-v3.14/soc
>
> for you to fetch changes up to 4408c26bc37fa8ada493ad41a6c7659b76fff483:
>
>   ARM: davinci: clock: return 0 upon error from clk_round_rate() (2013-11-27 14:48:33 +0530)
>
> ----------------------------------------------------------------
> A patch to fix the return value of clk_round_rate()
>
> ----------------------------------------------------------------

Pulled into next/soc,

Thanks,

Kevin

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

end of thread, other threads:[~2014-01-16 21:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-10 11:26 [GIT PULL] A DaVinci SoC update for v3.14 Sekhar Nori
2014-01-16 21:54 ` Kevin Hilman

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