diff options
author | Pierre Ossman <drzeus@drzeus.cx> | 2007-12-02 19:46:49 +0100 |
---|---|---|
committer | Pierre Ossman <drzeus@drzeus.cx> | 2007-12-12 20:01:00 +0100 |
commit | c6573c94670882079174e2ea0da4abf1a0da51fe (patch) | |
tree | 067bf04780103087d031d90794df3d8242fcfd9a /drivers/mmc | |
parent | dc93441b3f5879a096dd117a81df541b0855ebbb (diff) | |
download | linux-3.10-c6573c94670882079174e2ea0da4abf1a0da51fe.tar.gz linux-3.10-c6573c94670882079174e2ea0da4abf1a0da51fe.tar.bz2 linux-3.10-c6573c94670882079174e2ea0da4abf1a0da51fe.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 17b4e391db3..758a7417eb5 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) version = readw(host->ioaddr + SDHCI_HOST_VERSION); version = (version & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT; - if (version != 0) { + if (version > 1) { printk(KERN_ERR "%s: Unknown controller version (%d). " "You may experience problems.\n", host->slot_descr, version); |