From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrian Hunter Subject: Re: [PATCH 4/5] mmc: sdhci-omap: Add OMAP SDHCI driver Date: Thu, 31 Aug 2017 16:02:23 +0300 Message-ID: References: <20170821074132.4622-1-kishon@ti.com> <20170821074132.4622-5-kishon@ti.com> <4f0a7225-1843-b353-1a2a-9adcb49554d3@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Content-Language: en-US Sender: linux-kernel-owner@vger.kernel.org To: Kishon Vijay Abraham I , Ulf Hansson Cc: Rob Herring , Tony Lindgren , Sekhar Nori , Russell King , Ravikumar Kattekola , linux-mmc@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org List-Id: devicetree@vger.kernel.org On 30/08/17 16:53, Kishon Vijay Abraham I wrote: > On Monday 28 August 2017 02:36 PM, Adrian Hunter wrote: >> On 21/08/17 10:41, Kishon Vijay Abraham I wrote: >>> + >>> +static void sdhci_omap_set_clock(struct sdhci_host *host, unsigned int clock) >>> +{ >>> + struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host); >>> + struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host); >>> + unsigned long clkdiv; >>> + >>> + if (!clock) >>> + return; >> >> Are you sure you don't want to stop the clock. > > There is never a case where the MMC core sends a request to stop the clock. > Maybe this check is not required at all. It does when voltage switching e.g. mmc_set_uhs_voltage(), but host drivers should support the possibility anyway.