diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-27 12:29:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-04-27 12:29:04 -0400 |
commit | 0278ef8b484a71917bd4f03a763285cdaac10954 (patch) | |
tree | 8f6f7bf2e2a85b4643dfe3d0475811ce858fb4fc /drivers/net/sunhme.c | |
parent | 15c54033964a943de7b0763efd3bd0ede7326395 (diff) | |
parent | cd9ad58d4061494e7fdd70ded7bcf2418daf356a (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6: (67 commits)
[SCSI] SUNESP: Complete driver rewrite to version 2.0
[SPARC64]: Convert PCI over to generic struct iommu/strbuf.
[SPARC]: device_node name constification fallout
[SPARC64]: Convert SBUS over to generic iommu/strbuf structs.
[SPARC64]: Add generic iommu and strbuf structs to iommu.h
[SPARC64]: Consolidate {sbus,pci}_iommu_arena.
[SPARC]: Make device_node name and type const
[SPARC64]: constify some paramaters of OF routines
[TIGON3]: of_get_property() returns const.
[SPARC64]: Fix PCI rework to adhere to of_get_property() const return.
[SPARC64]: Document and fix calculation of pages_avail.
[SPARC64]: Make sure pbm->prom_node is setup easly enough in psycho.c
[SPARC64]: Use bootmem_bootmap_pages() in choose_bootmap_pfn().
[SPARC64]: Add proper header file extern for cmdline_memory_size.
[SPARC64]: Kill sparc_ultra_dump_{i,d}tlb()
[SPARC64]: Use DECLARE_BITMAP and BITS_TO_LONGS in mm/init.c
[SPARC64]: Give move verbose show_mem() output just like i386.
[SPARC64]: Mark show_mem() printk's with KERN_INFO.
[SPARC64]: Kill kvaddr_to_phys() and friends.
[SPARC64]: Privatize sun4u_get_pte() and fix name.
...
Diffstat (limited to 'drivers/net/sunhme.c')
-rw-r--r-- | drivers/net/sunhme.c | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/drivers/net/sunhme.c b/drivers/net/sunhme.c index 5304d7b94e5e..51c3fe2108a3 100644 --- a/drivers/net/sunhme.c +++ b/drivers/net/sunhme.c | |||
@@ -55,9 +55,6 @@ | |||
55 | 55 | ||
56 | #ifdef CONFIG_PCI | 56 | #ifdef CONFIG_PCI |
57 | #include <linux/pci.h> | 57 | #include <linux/pci.h> |
58 | #ifdef CONFIG_SPARC | ||
59 | #include <asm/pbm.h> | ||
60 | #endif | ||
61 | #endif | 58 | #endif |
62 | 59 | ||
63 | #include "sunhme.h" | 60 | #include "sunhme.h" |
@@ -2701,7 +2698,7 @@ static int __devinit happy_meal_sbus_probe_one(struct sbus_dev *sdev, int is_qfe | |||
2701 | dev->dev_addr[i] = macaddr[i]; | 2698 | dev->dev_addr[i] = macaddr[i]; |
2702 | macaddr[5]++; | 2699 | macaddr[5]++; |
2703 | } else { | 2700 | } else { |
2704 | unsigned char *addr; | 2701 | const unsigned char *addr; |
2705 | int len; | 2702 | int len; |
2706 | 2703 | ||
2707 | addr = of_get_property(dp, "local-mac-address", &len); | 2704 | addr = of_get_property(dp, "local-mac-address", &len); |
@@ -2983,7 +2980,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
2983 | { | 2980 | { |
2984 | struct quattro *qp = NULL; | 2981 | struct quattro *qp = NULL; |
2985 | #ifdef CONFIG_SPARC | 2982 | #ifdef CONFIG_SPARC |
2986 | struct pcidev_cookie *pcp; | 2983 | struct device_node *dp; |
2987 | #endif | 2984 | #endif |
2988 | struct happy_meal *hp; | 2985 | struct happy_meal *hp; |
2989 | struct net_device *dev; | 2986 | struct net_device *dev; |
@@ -2995,13 +2992,8 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
2995 | 2992 | ||
2996 | /* Now make sure pci_dev cookie is there. */ | 2993 | /* Now make sure pci_dev cookie is there. */ |
2997 | #ifdef CONFIG_SPARC | 2994 | #ifdef CONFIG_SPARC |
2998 | pcp = pdev->sysdata; | 2995 | dp = pci_device_to_OF_node(pdev); |
2999 | if (pcp == NULL) { | 2996 | strcpy(prom_name, dp->name); |
3000 | printk(KERN_ERR "happymeal(PCI): Some PCI device info missing\n"); | ||
3001 | return -ENODEV; | ||
3002 | } | ||
3003 | |||
3004 | strcpy(prom_name, pcp->prom_node->name); | ||
3005 | #else | 2997 | #else |
3006 | if (is_quattro_p(pdev)) | 2998 | if (is_quattro_p(pdev)) |
3007 | strcpy(prom_name, "SUNW,qfe"); | 2999 | strcpy(prom_name, "SUNW,qfe"); |
@@ -3078,11 +3070,11 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
3078 | macaddr[5]++; | 3070 | macaddr[5]++; |
3079 | } else { | 3071 | } else { |
3080 | #ifdef CONFIG_SPARC | 3072 | #ifdef CONFIG_SPARC |
3081 | unsigned char *addr; | 3073 | const unsigned char *addr; |
3082 | int len; | 3074 | int len; |
3083 | 3075 | ||
3084 | if (qfe_slot != -1 && | 3076 | if (qfe_slot != -1 && |
3085 | (addr = of_get_property(pcp->prom_node, | 3077 | (addr = of_get_property(dp, |
3086 | "local-mac-address", &len)) != NULL | 3078 | "local-mac-address", &len)) != NULL |
3087 | && len == 6) { | 3079 | && len == 6) { |
3088 | memcpy(dev->dev_addr, addr, 6); | 3080 | memcpy(dev->dev_addr, addr, 6); |
@@ -3102,7 +3094,7 @@ static int __devinit happy_meal_pci_probe(struct pci_dev *pdev, | |||
3102 | hp->tcvregs = (hpreg_base + 0x7000UL); | 3094 | hp->tcvregs = (hpreg_base + 0x7000UL); |
3103 | 3095 | ||
3104 | #ifdef CONFIG_SPARC | 3096 | #ifdef CONFIG_SPARC |
3105 | hp->hm_revision = of_getintprop_default(pcp->prom_node, "hm-rev", 0xff); | 3097 | hp->hm_revision = of_getintprop_default(dp, "hm-rev", 0xff); |
3106 | if (hp->hm_revision == 0xff) { | 3098 | if (hp->hm_revision == 0xff) { |
3107 | unsigned char prev; | 3099 | unsigned char prev; |
3108 | 3100 | ||
@@ -3297,7 +3289,7 @@ static int __devinit hme_sbus_probe(struct of_device *dev, const struct of_devic | |||
3297 | { | 3289 | { |
3298 | struct sbus_dev *sdev = to_sbus_device(&dev->dev); | 3290 | struct sbus_dev *sdev = to_sbus_device(&dev->dev); |
3299 | struct device_node *dp = dev->node; | 3291 | struct device_node *dp = dev->node; |
3300 | char *model = of_get_property(dp, "model", NULL); | 3292 | const char *model = of_get_property(dp, "model", NULL); |
3301 | int is_qfe = (match->data != NULL); | 3293 | int is_qfe = (match->data != NULL); |
3302 | 3294 | ||
3303 | if (!is_qfe && model && !strcmp(model, "SUNW,sbus-qfe")) | 3295 | if (!is_qfe && model && !strcmp(model, "SUNW,sbus-qfe")) |