public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MMC: use pci_dev->revision
@ 2011-03-17 18:08 Sergei Shtylyov
  2011-03-18 11:24 ` Harald Welte
  0 siblings, 1 reply; 2+ messages in thread
From: Sergei Shtylyov @ 2011-03-17 18:08 UTC (permalink / raw)
  To: linux-mmc, cjb; +Cc: brucechang, HaraldWelte

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 the similar
code too. So convert both drivers to using the 'revision' field of 'struct
pci_dev' now...

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>

---
The patch is against the recent Linus' tree.

 drivers/mmc/host/sdhci-pci.c |    6 ++----
 drivers/mmc/host/via-sdmmc.c |    5 ++---
 2 files changed, 4 insertions(+), 7 deletions(-)

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)

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] MMC: use pci_dev->revision
  2011-03-17 18:08 [PATCH] MMC: use pci_dev->revision Sergei Shtylyov
@ 2011-03-18 11:24 ` Harald Welte
  0 siblings, 0 replies; 2+ messages in thread
From: Harald Welte @ 2011-03-18 11:24 UTC (permalink / raw)
  To: Sergei Shtylyov; +Cc: linux-mmc, cjb, brucechang, HaraldWelte

Hi Sergei,

On Thu, Mar 17, 2011 at 09:08:45PM +0300, Sergei Shtylyov wrote:
> 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 the similar
> code too. So convert both drivers to using the 'revision' field of 'struct
> pci_dev' now...
> 
> Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>

Acked-by: Harald Welte <HaraldWelte@viatech.com>
-- 
- Harald Welte <laforge@gnumonks.org>          	        http://gnumonks.org/
============================================================================
We all know Linux is great...it does infinite loops in 5 seconds. -- Linus

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-03-18 11:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-17 18:08 [PATCH] MMC: use pci_dev->revision Sergei Shtylyov
2011-03-18 11:24 ` Harald Welte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox