aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2007-12-02 13:46:49 -0500
committerPierre Ossman <drzeus@drzeus.cx>2007-12-12 14:01:00 -0500
commitc6573c94670882079174e2ea0da4abf1a0da51fe (patch)
tree067bf04780103087d031d90794df3d8242fcfd9a /drivers/mmc
parentdc93441b3f5879a096dd117a81df541b0855ebbb (diff)
sdhci: don't warn about sdhci 2.0 controllers
We support 2.0 controllers, even though we don't use anything in the new feature set. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/host/sdhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index 17b4e391db35..758a7417eb50 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -1294,7 +1294,7 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
1294 1294
1295 version = readw(host->ioaddr + SDHCI_HOST_VERSION); 1295 version = readw(host->ioaddr + SDHCI_HOST_VERSION);
1296 version = (version & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT; 1296 version = (version & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
1297 if (version != 0) { 1297 if (version > 1) {
1298 printk(KERN_ERR "%s: Unknown controller version (%d). " 1298 printk(KERN_ERR "%s: Unknown controller version (%d). "
1299 "You may experience problems.\n", host->slot_descr, 1299 "You may experience problems.\n", host->slot_descr,
1300 version); 1300 version);