mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-15 21:23:23 +00:00
lib/test_vmalloc.c: use unsigned long constant
Use an unsigned long constant instead of an int constant and a cast. This fixes the checkpatch warning WARNING: Unnecessary typecast of c90 int constant - '(unsigned long) 1' could be '1UL' + align = ((unsigned long) 1) << i; Link: https://lkml.kernel.org/r/20240226191159.39509-4-martin@kaiser.cx Signed-off-by: Martin Kaiser <martin@kaiser.cx> Reviewed-by: Uladzislau Rezki (Sony) <urezki@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
e2c5bfebab
commit
4c4a52544a
@ -117,7 +117,7 @@ static int align_shift_alloc_test(void)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < BITS_PER_LONG; i++) {
|
for (i = 0; i < BITS_PER_LONG; i++) {
|
||||||
align = ((unsigned long) 1) << i;
|
align = 1UL << i;
|
||||||
|
|
||||||
ptr = __vmalloc_node(PAGE_SIZE, align, GFP_KERNEL|__GFP_ZERO, 0,
|
ptr = __vmalloc_node(PAGE_SIZE, align, GFP_KERNEL|__GFP_ZERO, 0,
|
||||||
__builtin_return_address(0));
|
__builtin_return_address(0));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user