Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29560
b: refs/heads/master
c: de8d28b
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Jun 24, 2006
1 parent 2f2a033 commit 84230eb
Show file tree
Hide file tree
Showing 18 changed files with 183 additions and 135 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: 765b5f32730cfd2608291e679060b0391570c8b3
refs/heads/master: de8d28b16f5614aeb12bb69c8f9a38578b8d3ada
6 changes: 3 additions & 3 deletions trunk/arch/sparc64/kernel/ebus.c
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ void __init ebus_init(void)
}

cookie = pdev->sysdata;
ebusnd = cookie->prom_node;
ebusnd = cookie->prom_node->node;

ebus_chain = ebus = ebus_alloc(sizeof(struct linux_ebus));
ebus->next = NULL;
Expand All @@ -578,7 +578,7 @@ void __init ebus_init(void)
}
ebus->is_rio = is_rio;
cookie = pdev->sysdata;
ebusnd = cookie->prom_node;
ebusnd = cookie->prom_node->node;
continue;
}
printk("ebus%d:", num_ebus);
Expand Down Expand Up @@ -622,7 +622,7 @@ void __init ebus_init(void)
break;

cookie = pdev->sysdata;
ebusnd = cookie->prom_node;
ebusnd = cookie->prom_node->node;

ebus->next = ebus_alloc(sizeof(struct linux_ebus));
ebus = ebus->next;
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sparc64/kernel/isa.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ void __init isa_init(void)
isa_br->parent = pbm;
isa_br->self = pdev;
isa_br->index = index++;
isa_br->prom_node = pdev_cookie->prom_node;
strncpy(isa_br->prom_name, pdev_cookie->prom_name,
isa_br->prom_node = pdev_cookie->prom_node->node;
strncpy(isa_br->prom_name, pdev_cookie->prom_node->name,
sizeof(isa_br->prom_name));

prop_len = prom_getproperty(isa_br->prom_node,
Expand Down
Loading

0 comments on commit 84230eb

Please sign in to comment.