Re: [PATCH v4 11/13] mmc: mmci: add f_max to variant structure

From: Srinivas Kandagatla
Date: Fri May 30 2014 - 06:29:53 EST


Thanks Ulf,

On 30/05/14 11:28, Ulf Hansson wrote:
*/
>- if (host->mclk > 100000000) {
>- ret = clk_set_rate(host->clk, 100000000);
>+ if (host->mclk > host->variant->f_max) {
You can use the local variant pointer directly, instead of host->variant.

yes, Will do that in next version.

Thanks,
srini
>+ ret = clk_set_rate(host->clk, host->variant->f_max);
> if (ret < 0)
> goto clk_disable;
> host->mclk = clk_get_rate(host->clk);
>--
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/