Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c6573c94670882079174e2ea0da4abf1a0da51fe
Commit:     c6573c94670882079174e2ea0da4abf1a0da51fe
Parent:     dc93441b3f5879a096dd117a81df541b0855ebbb
Author:     Pierre Ossman <[EMAIL PROTECTED]>
AuthorDate: Sun Dec 2 19:46:49 2007 +0100
Committer:  Pierre Ossman <[EMAIL PROTECTED]>
CommitDate: Wed Dec 12 20:01:00 2007 +0100

    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 <[EMAIL PROTECTED]>
---
 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 17b4e39..758a741 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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to