Re: [PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-02-11 Thread Chris Ball
Hi Lars-Peter, On Mon, Jan 28 2013, Lars-Peter Clausen wrote: Quite a few drivers have a implementation of the get_timeout_clock callback which simply returns the result of clk_get_rate on devices clock. This patch adds a common implementation of this to the sdhci-pltfm module and replaces

Re: [PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-01-29 Thread Kevin Liu
-Original Message- From: Lars-Peter Clausen [mailto:l...@metafoo.de] Sent: Tuesday, January 29, 2013 2:27 AM To: Chris Ball Cc: Stephen Warren; Shawn Guo; Zhangfei Gao; Kevin Liu; linux-mmc@vger.kernel.org; Lars-Peter Clausen Subject: [PATCH] mmc: sdhci-pltfm: Add a common clk API

Re: [PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-01-29 Thread Lars-Peter Clausen
On 01/29/2013 06:45 AM, Stephen Warren wrote: On 01/28/2013 11:27 AM, Lars-Peter Clausen wrote: Quite a few drivers have a implementation of the get_timeout_clock callback which simply returns the result of clk_get_rate on devices clock. This patch adds a common implementation of this to the

Re: [PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-01-29 Thread Stephen Warren
On 01/29/2013 02:22 AM, Lars-Peter Clausen wrote: On 01/29/2013 06:45 AM, Stephen Warren wrote: On 01/28/2013 11:27 AM, Lars-Peter Clausen wrote: Quite a few drivers have a implementation of the get_timeout_clock callback which simply returns the result of clk_get_rate on devices clock. This

[PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-01-28 Thread Lars-Peter Clausen
Quite a few drivers have a implementation of the get_timeout_clock callback which simply returns the result of clk_get_rate on devices clock. This patch adds a common implementation of this to the sdhci-pltfm module and replaces all custom implementations with the common one. Signed-off-by:

Re: [PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-01-28 Thread Stephen Warren
On 01/28/2013 11:27 AM, Lars-Peter Clausen wrote: Quite a few drivers have a implementation of the get_timeout_clock callback which simply returns the result of clk_get_rate on devices clock. This patch adds a common implementation of this to the sdhci-pltfm module and replaces all custom

Re: [PATCH] mmc: sdhci-pltfm: Add a common clk API based implementation of get_timeout_clock

2013-01-28 Thread Shawn Guo
On Mon, Jan 28, 2013 at 07:27:12PM +0100, Lars-Peter Clausen wrote: Quite a few drivers have a implementation of the get_timeout_clock callback which simply returns the result of clk_get_rate on devices clock. This patch adds a common implementation of this to the sdhci-pltfm module and