From mboxrd@z Thu Jan 1 00:00:00 1970 From: Srinivas Kandagatla Subject: Re: [PATCH v4 11/13] mmc: mmci: add f_max to variant structure Date: Fri, 30 May 2014 11:29:44 +0100 Message-ID: <53885D98.8030207@linaro.org> References: <1401284608-16428-1-git-send-email-srinivas.kandagatla@linaro.org> <1401284862-16894-1-git-send-email-srinivas.kandagatla@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-mmc-owner@vger.kernel.org To: Ulf Hansson Cc: Russell King , linux-mmc , Chris Ball , "linux-kernel@vger.kernel.org" , "linux-arm-msm@vger.kernel.org" , Linus Walleij List-Id: linux-arm-msm@vger.kernel.org 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); >> >--