summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board-ventana-sdhci.c
diff options
context:
space:
mode:
authorRamalingam C <ramalingamc@nvidia.com>2012-02-28 19:32:10 +0530
committerRohan Somvanshi <rsomvanshi@nvidia.com>2012-03-21 22:56:43 -0700
commit6ab7670d0a6e91035e2e74cb4fa028488d80f4f8 (patch)
treee70a13e1f792ec463c671aa0544d98eb8fa20851 /arch/arm/mach-tegra/board-ventana-sdhci.c
parent98b62cce3d8e48c16676ef9027a03312368f934b (diff)
arm: Tegra: Ventana: power gpio modification
Correction on the power_gpio assignement for SD and eMMC platform data. TEGRA_GPIO_PI6 is assigned to power_gpio of tegra_sdhci_platform_data2 Since no gpio control is there for eMMC power rails power_gpio of tegra_sdhci_platform_data3 is initialized to -1. Change-Id: I5b18f09c01668e304425dee92f024be69d3e0448 Signed-off-by: Ramalingam C <ramalingamc@nvidia.com> Reviewed-on: http://git-master/r/86355 Reviewed-by: Kiran Adduri <kadduri@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-by: Pavan Kunapuli <pkunapuli@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/board-ventana-sdhci.c')
-rw-r--r--arch/arm/mach-tegra/board-ventana-sdhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/board-ventana-sdhci.c b/arch/arm/mach-tegra/board-ventana-sdhci.c
index 8a99d9252fc5..49720cd7a6d7 100644
--- a/arch/arm/mach-tegra/board-ventana-sdhci.c
+++ b/arch/arm/mach-tegra/board-ventana-sdhci.c
@@ -137,14 +137,14 @@ static struct tegra_sdhci_platform_data tegra_sdhci_platform_data0 = {
static struct tegra_sdhci_platform_data tegra_sdhci_platform_data2 = {
.cd_gpio = TEGRA_GPIO_PI5,
.wp_gpio = TEGRA_GPIO_PH1,
- .power_gpio = TEGRA_GPIO_PT3,
+ .power_gpio = TEGRA_GPIO_PI6,
};
static struct tegra_sdhci_platform_data tegra_sdhci_platform_data3 = {
.is_8bit = 1,
.cd_gpio = -1,
.wp_gpio = -1,
- .power_gpio = TEGRA_GPIO_PI6,
+ .power_gpio = -1,
.mmc_data = {
.built_in = 1,
}