summaryrefslogtreecommitdiff
path: root/drivers/mmc
diff options
context:
space:
mode:
authorPierre Ossman <drzeus@drzeus.cx>2006-12-07 19:17:20 +0100
committerPierre Ossman <drzeus@drzeus.cx>2006-12-11 09:48:42 +0100
commita98087cf81e91999a91ceedb2d2e3a95827c651f (patch)
treea2b6beae2e14f31cd0dbfb7abb5284b974708176 /drivers/mmc
parent7b30d281b9c115890c75d11eaf06881261c256da (diff)
downloadlinux-3.10-a98087cf81e91999a91ceedb2d2e3a95827c651f.tar.gz
linux-3.10-a98087cf81e91999a91ceedb2d2e3a95827c651f.tar.bz2
linux-3.10-a98087cf81e91999a91ceedb2d2e3a95827c651f.zip
mmc: Change SDHCI iomem error to a warning
Some controllers report an invalid iomem size, but seem to work correctly anyway. Change our current error to just a warning and hope it doesn't cause too much problems. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/sdhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index cd98117632d..c2d13d7e991 100644
--- a/drivers/mmc/sdhci.c
+++ b/drivers/mmc/sdhci.c
@@ -1170,8 +1170,8 @@ static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
}
if (pci_resource_len(pdev, first_bar + slot) != 0x100) {
- printk(KERN_ERR DRIVER_NAME ": Invalid iomem size. Aborting.\n");
- return -ENODEV;
+ printk(KERN_ERR DRIVER_NAME ": Invalid iomem size. "
+ "You may experience problems.\n");
}
if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {