mmc: use pci_dev->revision

The SDHCI driver uses PCI_CLASS_REVISION instead of PCI_REVISION_ID, so
it was not converted by commit 44c10138fd4bbc4b6d6bff0873c24902f2a9da65
(PCI: Change all drivers to use pci_device->revision). The newer VIA
driver has similar code too. This patch converts both drivers to use
the 'revision' field of 'struct pci_dev'.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Acked-by: Harald Welte <HaraldWelte@viatech.com>
Signed-off-by: Chris Ball <cjb@laptop.org>

authored by Sergei Shtylyov and committed by Chris Ball cf5e23e1 5a8fba52

+4 -7
+2 -4
drivers/mmc/host/sdhci-pci.c
··· 1016 1016 struct sdhci_pci_chip *chip; 1017 1017 struct sdhci_pci_slot *slot; 1018 1018 1019 - u8 slots, rev, first_bar; 1019 + u8 slots, first_bar; 1020 1020 int ret, i; 1021 1021 1022 1022 BUG_ON(pdev == NULL); 1023 1023 BUG_ON(ent == NULL); 1024 1024 1025 - pci_read_config_byte(pdev, PCI_CLASS_REVISION, &rev); 1026 - 1027 1025 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n", 1028 - (int)pdev->vendor, (int)pdev->device, (int)rev); 1026 + (int)pdev->vendor, (int)pdev->device, (int)pdev->revision); 1029 1027 1030 1028 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots); 1031 1029 if (ret)
+2 -3
drivers/mmc/host/via-sdmmc.c
··· 1087 1087 struct mmc_host *mmc; 1088 1088 struct via_crdr_mmc_host *sdhost; 1089 1089 u32 base, len; 1090 - u8 rev, gatt; 1090 + u8 gatt; 1091 1091 int ret; 1092 1092 1093 - pci_read_config_byte(pcidev, PCI_CLASS_REVISION, &rev); 1094 1093 pr_info(DRV_NAME 1095 1094 ": VIA SDMMC controller found at %s [%04x:%04x] (rev %x)\n", 1096 1095 pci_name(pcidev), (int)pcidev->vendor, (int)pcidev->device, 1097 - (int)rev); 1096 + (int)pcidev->revision); 1098 1097 1099 1098 ret = pci_enable_device(pcidev); 1100 1099 if (ret)