Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 10487
b: refs/heads/master
c: 3aa0862
h: refs/heads/master
i:
  10485: 7cfcf1f
  10483: a70ff88
  10479: 96ca35c
v: v3
  • Loading branch information
Grant Grundler authored and Kyle McMartin committed Oct 22, 2005
1 parent 88e9f3c commit e00c3c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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: 413059f28e9949d9ad2d04d1070c63169798176e
refs/heads/master: 3aa0862ce7c120e035bc2aa25997fd000d964d6e
2 changes: 1 addition & 1 deletion trunk/drivers/parisc/iosapic.c
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ static struct irt_entry *iosapic_alloc_irt(int num_entries)
* 4-byte alignment on 32-bit kernels
*/
a = (unsigned long)kmalloc(sizeof(struct irt_entry) * num_entries + 8, GFP_KERNEL);
a = (a + 7) & ~7;
a = (a + 7UL) & ~7UL;
return (struct irt_entry *)a;
}

Expand Down

0 comments on commit e00c3c2

Please sign in to comment.