mmc: tegra: don't use periph_id in pad_init_mmc()
[oweals/u-boot.git] / drivers / mmc / tegra_mmc.c
index 5e6cfe710a1de1180072f7a715d2b8b6cc265a8f..4335431acc1777bb41667ba5e937878c58ebd4d6 100644 (file)
@@ -451,14 +451,13 @@ static void tegra_mmc_set_ios(struct mmc *mmc)
 static void pad_init_mmc(struct mmc_host *host)
 {
 #if defined(CONFIG_TEGRA30)
-       enum periph_id id = host->mmc_id;
        u32 val;
 
-       debug("%s: sdmmc address = %08x, id = %d\n", __func__,
-             (unsigned int)host->reg, id);
+       debug("%s: sdmmc address = %08x\n", __func__, (unsigned int)host->reg);
 
        /* Set the pad drive strength for SDMMC1 or 3 only */
-       if (id != PERIPH_ID_SDMMC1 && id != PERIPH_ID_SDMMC3) {
+       if (host->reg != (void *)0x78000000 &&
+           host->reg != (void *)0x78000400) {
                debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
                      __func__);
                return;