Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2366c298 authored by Hannes Eder's avatar Hannes Eder Committed by Ingo Molnar
Browse files

x86: numa_32.c: fix sparse warning: Using plain integer as NULL pointer



Fix this sparse warning:

  arch/x86/mm/numa_32.c:197:24: warning: Using plain integer as NULL pointer

Signed-off-by: default avatarHannes Eder <hannes@hanneseder.net>
Cc: trivial@kernel.org
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent fc6fcdfb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ void *alloc_remap(int nid, unsigned long size)
	size = ALIGN(size, L1_CACHE_BYTES);

	if (!allocation || (allocation + size) >= node_remap_end_vaddr[nid])
		return 0;
		return NULL;

	node_remap_alloc_vaddr[nid] += size;
	memset(allocation, 0, size);