Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 196624
b: refs/heads/master
c: 7cad197
h: refs/heads/master
v: v3
  • Loading branch information
Martyn Welch authored and Benjamin Herrenschmidt committed May 6, 2010
1 parent eba319a commit dc50532
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 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: 75c1d539ea13117cbe95e2c343e52af67d735145
refs/heads/master: 7cad19784950f947bf8b332b92d83c75788f897a
11 changes: 8 additions & 3 deletions trunk/arch/powerpc/include/asm/parport.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,22 @@ static int __devinit parport_pc_find_nonpci_ports (int autoirq, int autodma)
u32 io1, io2;
int propsize;
int count = 0;
int virq;

for (np = NULL; (np = of_find_compatible_node(np,
"parallel",
"pnpPNP,400")) != NULL;) {
prop = of_get_property(np, "reg", &propsize);
if (!prop || propsize > 6*sizeof(u32))
continue;
io1 = prop[1]; io2 = prop[2];
prop = of_get_property(np, "interrupts", NULL);
if (!prop)

virq = irq_of_parse_and_map(np, 0);
if (virq == NO_IRQ)
continue;
if (parport_pc_probe_port(io1, io2, prop[0], autodma, NULL, 0) != NULL)

if (parport_pc_probe_port(io1, io2, virq, autodma, NULL, 0)
!= NULL)
count++;
}
return count;
Expand Down

0 comments on commit dc50532

Please sign in to comment.