dect
/
linux-2.6
Archived
13
0
Fork 0

at91_mci: minor cleanup

MMC_POWER_ON is a noop, no need to set the power pin again.

Signed-off-by: Marc Pignat <marc.pignat@hevs.ch>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
This commit is contained in:
Marc Pignat 2008-05-09 11:07:07 +02:00 committed by Pierre Ossman
parent 88ae600d58
commit e5c0ef90e6
1 changed files with 4 additions and 1 deletions

View File

@ -663,9 +663,12 @@ static void at91_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
gpio_set_value(host->board->vcc_pin, 0);
break;
case MMC_POWER_UP:
case MMC_POWER_ON:
gpio_set_value(host->board->vcc_pin, 1);
break;
case MMC_POWER_ON:
break;
default:
WARN_ON(1);
}
}
}