From patchwork Sat Feb 4 14:51:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rajendra Nayak X-Patchwork-Id: 6654 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 925E323F03 for ; Sat, 4 Feb 2012 14:52:01 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 51451A18095 for ; Sat, 4 Feb 2012 14:52:01 +0000 (UTC) Received: by iabz7 with SMTP id z7so8410368iab.11 for ; Sat, 04 Feb 2012 06:52:00 -0800 (PST) Received: by 10.50.156.196 with SMTP id wg4mr13413324igb.13.1328367120777; Sat, 04 Feb 2012 06:52:00 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.169.210 with SMTP id a18cs44986ibz; Sat, 4 Feb 2012 06:51:59 -0800 (PST) Received: by 10.236.131.5 with SMTP id l5mr16205797yhi.128.1328367119449; Sat, 04 Feb 2012 06:51:59 -0800 (PST) Received: from bear.ext.ti.com (bear.ext.ti.com. [192.94.94.41]) by mx.google.com with ESMTPS id a23si10089008yhe.123.2012.02.04.06.51.59 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 04 Feb 2012 06:51:59 -0800 (PST) Received-SPF: neutral (google.com: 192.94.94.41 is neither permitted nor denied by best guess record for domain of a0131687@ula0131687) client-ip=192.94.94.41; Authentication-Results: mx.google.com; spf=neutral (google.com: 192.94.94.41 is neither permitted nor denied by best guess record for domain of a0131687@ula0131687) smtp.mail=a0131687@ula0131687 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id q14Eps8P011916; Sat, 4 Feb 2012 08:51:55 -0600 Received: from DBDE71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id q14Epnu9018202; Sat, 4 Feb 2012 20:21:51 +0530 (IST) Received: from dbdp31.itg.ti.com (172.24.170.98) by DBDE71.ent.ti.com (172.24.170.149) with Microsoft SMTP Server id 14.1.323.3; Sat, 4 Feb 2012 20:21:49 +0530 Received: from ula0131687 (h81-226.vpn.ti.com [172.24.81.226]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id q14Eplut009874; Sat, 4 Feb 2012 20:21:47 +0530 (IST) Received: from a0131687 by ula0131687 with local (Exim 4.72) (envelope-from ) id 1Rtgxs-0002iZ-T9; Sat, 04 Feb 2012 20:21:44 +0530 From: Rajendra Nayak To: , , CC: , , , , , Rajendra Nayak Subject: [PATCH 5/6] mmc: omap_hsmmc: Get rid of omap_hsmmc_4_set_power function Date: Sat, 4 Feb 2012 20:21:29 +0530 Message-ID: <1328367090-10402-6-git-send-email-rnayak@ti.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1328367090-10402-1-git-send-email-rnayak@ti.com> References: <1328367090-10402-1-git-send-email-rnayak@ti.com> MIME-Version: 1.0 Now that omap_hsmmc_set_power() already has a check to return 0 if !host->vcc, it seems like it can be used even on MMC4 instead of the dummy omap_hsmmc_4_set_power(). This also helps get rid of all the host->id based check to populate the right function for on-chip/external level shifting and use omap_hsmmc_set_power() for all MMC modules. Signed-off-by: Rajendra Nayak --- drivers/mmc/host/omap_hsmmc.c | 21 +-------------------- 1 files changed, 1 insertions(+), 20 deletions(-) diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index f98c599..17e264b 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -297,32 +297,13 @@ static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on, return ret; } -static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on, - int vdd) -{ - return 0; -} - static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host) { struct regulator *reg; int ret = 0; int ocr_value = 0; - switch (host->id) { - case OMAP_MMC1_DEVID: - case OMAP_MMC2_DEVID: - case OMAP_MMC3_DEVID: - case OMAP_MMC5_DEVID: - /* On-chip level shifting via PBIAS0/PBIAS1 */ - mmc_slot(host).set_power = omap_hsmmc_set_power; - break; - case OMAP_MMC4_DEVID: - mmc_slot(host).set_power = omap_hsmmc_4_set_power; - default: - pr_err("MMC%d configuration not supported!\n", host->id); - return -EINVAL; - } + mmc_slot(host).set_power = omap_hsmmc_set_power; reg = regulator_get(host->dev, "vmmc"); if (IS_ERR(reg)) {