Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 113092
b: refs/heads/master
c: 0f73d1b
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Sep 2, 2008
1 parent ccb2e10 commit 44ea42a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 446139a8f7078d96159a936fd6059660db425405
refs/heads/master: 0f73d1bbe6240bcdf14c221bbe2ece63540c5c44
17 changes: 3 additions & 14 deletions trunk/arch/sparc64/kernel/pci_psycho.c
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,6 @@ static void __init psycho_pbm_init(struct pci_controller_info *p,
struct of_device *op, int is_pbm_a)
{
struct device_node *dp = op->node;
struct property *prop;
struct pci_pbm_info *pbm;

if (is_pbm_a)
Expand All @@ -994,14 +993,8 @@ static void __init psycho_pbm_init(struct pci_controller_info *p,
pbm->index = pci_num_pbms++;

pbm->chip_type = PBM_CHIP_TYPE_PSYCHO;
pbm->chip_version = 0;
prop = of_find_property(dp, "version#", NULL);
if (prop)
pbm->chip_version = *(int *) prop->value;
pbm->chip_revision = 0;
prop = of_find_property(dp, "module-revision#", NULL);
if (prop)
pbm->chip_revision = *(int *) prop->value;
pbm->chip_version = of_getintprop_default(dp, "version#", 0);
pbm->chip_revision = of_getintprop_default(dp, "module-revision#", 0);

pbm->parent = p;
pbm->prom_node = dp;
Expand Down Expand Up @@ -1031,13 +1024,9 @@ static int __devinit psycho_probe(struct of_device *op,
struct pci_pbm_info *pbm;
struct iommu *iommu;
int is_pbm_a, err;
const u32 *p32;
u32 upa_portid;

upa_portid = 0xff;
p32 = of_get_property(dp, "upa-portid", NULL);
if (p32)
upa_portid = *p32;
upa_portid = of_getintprop_default(dp, "upa-portid", 0xff);

for (pbm = pci_pbm_root; pbm; pbm = pbm->next) {
struct pci_controller_info *p = pbm->parent;
Expand Down

0 comments on commit 44ea42a

Please sign in to comment.