diff mbox

MMC: use pci_dev->revision

Message ID 201103172108.45989.sshtylyov@ru.mvista.com (mailing list archive)
State New, archived
Headers show

Commit Message

Sergei Shtylyov March 17, 2011, 6:08 p.m. UTC
None
diff mbox

Patch

Index: linux-2.6/drivers/mmc/host/sdhci-pci.c
===================================================================
--- linux-2.6.orig/drivers/mmc/host/sdhci-pci.c
+++ linux-2.6/drivers/mmc/host/sdhci-pci.c
@@ -1012,16 +1012,14 @@  static int __devinit sdhci_pci_probe(str
 	struct sdhci_pci_chip *chip;
 	struct sdhci_pci_slot *slot;
 
-	u8 slots, rev, first_bar;
+	u8 slots, first_bar;
 	int ret, i;
 
 	BUG_ON(pdev == NULL);
 	BUG_ON(ent == NULL);
 
-	pci_read_config_byte(pdev, PCI_CLASS_REVISION, &rev);
-
 	dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
-		 (int)pdev->vendor, (int)pdev->device, (int)rev);
+		 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
 
 	ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
 	if (ret)
Index: linux-2.6/drivers/mmc/host/via-sdmmc.c
===================================================================
--- linux-2.6.orig/drivers/mmc/host/via-sdmmc.c
+++ linux-2.6/drivers/mmc/host/via-sdmmc.c
@@ -1090,14 +1090,13 @@  static int __devinit via_sd_probe(struct
 	struct mmc_host *mmc;
 	struct via_crdr_mmc_host *sdhost;
 	u32 base, len;
-	u8 rev, gatt;
+	u8  gatt;
 	int ret;
 
-	pci_read_config_byte(pcidev, PCI_CLASS_REVISION, &rev);
 	pr_info(DRV_NAME
 		": VIA SDMMC controller found at %s [%04x:%04x] (rev %x)\n",
 		pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device,
-		(int)rev);
+		(int)pcidev->revision);
 
 	ret = pci_enable_device(pcidev);
 	if (ret)