Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31296
b: refs/heads/master
c: 95714e1
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller authored and David S. Miller committed Jun 29, 2006
1 parent c665ac1 commit be3f74f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: cf44bbc26cf1361b692ab68c884f6a0df7da2fdb
refs/heads/master: 95714e12dfb4794ee120f058fdf763e61baaad82
4 changes: 2 additions & 2 deletions trunk/arch/sparc/kernel/of_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,9 @@ static void __init build_device_resources(struct of_device *op,
build_res:
memset(r, 0, sizeof(*r));
if (result != OF_BAD_ADDR) {
r->start = result;
r->start = result & 0xffffffff;
r->end = result + size - 1;
r->flags = flags;
r->flags = flags | ((result >> 32ULL) & 0xffUL);
} else {
r->start = ~0UL;
r->end = ~0UL;
Expand Down

0 comments on commit be3f74f

Please sign in to comment.