Commit 6f85a859 authored by David S. Miller's avatar David S. Miller

[SUNHME]: Use pci_device_to_OF_node().

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 457e1a8a
...@@ -55,9 +55,6 @@ ...@@ -55,9 +55,6 @@
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
#include <linux/pci.h> #include <linux/pci.h>
#ifdef CONFIG_SPARC
#include <asm/pbm.h>
#endif
#endif #endif
#include "sunhme.h" #include "sunhme.h"
...@@ -2986,7 +2983,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, ...@@ -2986,7 +2983,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
{ {
struct quattro *qp = NULL; struct quattro *qp = NULL;
#ifdef CONFIG_SPARC #ifdef CONFIG_SPARC
struct pcidev_cookie *pcp; struct device_node *dp;
#endif #endif
struct happy_meal *hp; struct happy_meal *hp;
struct net_device *dev; struct net_device *dev;
...@@ -2998,13 +2995,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, ...@@ -2998,13 +2995,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
/* Now make sure pci_dev cookie is there. */ /* Now make sure pci_dev cookie is there. */
#ifdef CONFIG_SPARC #ifdef CONFIG_SPARC
pcp = pdev->sysdata; dp = pci_device_to_OF_node(pdev);
if (pcp == NULL) { strcpy(prom_name, dp->name);
printk(KERN_ERR "happymeal(PCI): Some PCI device info missing\n");
return -ENODEV;
}
strcpy(prom_name, pcp->prom_node->name);
#else #else
if (is_quattro_p(pdev)) if (is_quattro_p(pdev))
strcpy(prom_name, "SUNW,qfe"); strcpy(prom_name, "SUNW,qfe");
...@@ -3085,7 +3077,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, ...@@ -3085,7 +3077,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
int len; int len;
if (qfe_slot != -1 && if (qfe_slot != -1 &&
(addr = of_get_property(pcp->prom_node, (addr = of_get_property(dp,
"local-mac-address", &len)) != NULL "local-mac-address", &len)) != NULL
&& len == 6) { && len == 6) {
memcpy(dev->dev_addr, addr, 6); memcpy(dev->dev_addr, addr, 6);
...@@ -3105,7 +3097,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, ...@@ -3105,7 +3097,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev,
hp->tcvregs = (hpreg_base + 0x7000UL); hp->tcvregs = (hpreg_base + 0x7000UL);
#ifdef CONFIG_SPARC #ifdef CONFIG_SPARC
hp->hm_revision = of_getintprop_default(pcp->prom_node, "hm-rev", 0xff); hp->hm_revision = of_getintprop_default(dp, "hm-rev", 0xff);
if (hp->hm_revision == 0xff) { if (hp->hm_revision == 0xff) {
unsigned char prev; unsigned char prev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment