Commit 3aa0862ce7c120e035bc2aa25997fd000d964d6e

Authored by Grant Grundler
Committed by Kyle McMartin
1 parent 413059f28e

[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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

drivers/parisc/iosapic.c
... ... @@ -244,7 +244,7 @@
244 244 * 4-byte alignment on 32-bit kernels
245 245 */
246 246 a = (unsigned long)kmalloc(sizeof(struct irt_entry) * num_entries + 8, GFP_KERNEL);
247   - a = (a + 7) & ~7;
  247 + a = (a + 7UL) & ~7UL;
248 248 return (struct irt_entry *)a;
249 249 }
250 250