diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-05-04 18:22:51 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-05-04 18:22:51 +0100 |
commit | 920e70c5c603ada05dd480ca0ccc0ae12a5fdc39 (patch) | |
tree | 8eb39280a5d5ce881315b9ac774ad41ca9516bc4 /drivers/mmc/mmci.c | |
parent | fe10c6abea8bc83291a13e0580b3e4c355710b09 (diff) | |
download | kernel-crypto-920e70c5c603ada05dd480ca0ccc0ae12a5fdc39.tar.gz kernel-crypto-920e70c5c603ada05dd480ca0ccc0ae12a5fdc39.tar.xz kernel-crypto-920e70c5c603ada05dd480ca0ccc0ae12a5fdc39.zip |
[MMC] Move set_ios debugging into mmc.c
Rather than having every driver duplicate the set_ios debugging,
provide a single version in mmc.c which can be expanded as we
add additional functionality.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/mmc/mmci.c')
-rw-r--r-- | drivers/mmc/mmci.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mmc/mmci.c b/drivers/mmc/mmci.c index df7e861e2fc..da8e4d7339c 100644 --- a/drivers/mmc/mmci.c +++ b/drivers/mmc/mmci.c @@ -402,9 +402,6 @@ static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) struct mmci_host *host = mmc_priv(mmc); u32 clk = 0, pwr = 0; - DBG(host, "clock %uHz busmode %u powermode %u Vdd %u\n", - ios->clock, ios->bus_mode, ios->power_mode, ios->vdd); - if (ios->clock) { if (ios->clock >= host->mclk) { clk = MCI_CLK_BYPASS; |