[PARISC] Minor iosapic.c cleanup

minor cleanup: qualify constant with "UL"

Acked-by: "Hmamouche, Youssef" <youssef@ece.utexas.edu>
Signed-off-by: Grant Grundler <grundler@parisc-linux.org>

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
This commit is contained in:
Grant Grundler 2005-10-21 22:47:04 -04:00 committed by Kyle McMartin
parent 413059f28e
commit 3aa0862ce7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}