bootmem.c: avoid c90 declaration warning
[akpm@linux-foundation.org: cleanup] Signed-off-by: Joe Perches <joe@perches.com> Cc: Pekka Enberg <penberg@cs.helsinki.fi> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Tejun Heo <tj@kernel.org> Cc: Johannes Weiner <hannes@cmpxchg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1e9c285998
commit
433f13a727
1 changed files with 8 additions and 4 deletions
12
mm/bootmem.c
12
mm/bootmem.c
|
@ -536,11 +536,15 @@ static void * __init alloc_arch_preferred_bootmem(bootmem_data_t *bdata,
|
||||||
return kzalloc(size, GFP_NOWAIT);
|
return kzalloc(size, GFP_NOWAIT);
|
||||||
|
|
||||||
#ifdef CONFIG_HAVE_ARCH_BOOTMEM
|
#ifdef CONFIG_HAVE_ARCH_BOOTMEM
|
||||||
bootmem_data_t *p_bdata;
|
{
|
||||||
|
bootmem_data_t *p_bdata;
|
||||||
|
|
||||||
p_bdata = bootmem_arch_preferred_node(bdata, size, align, goal, limit);
|
p_bdata = bootmem_arch_preferred_node(bdata, size, align,
|
||||||
if (p_bdata)
|
goal, limit);
|
||||||
return alloc_bootmem_core(p_bdata, size, align, goal, limit);
|
if (p_bdata)
|
||||||
|
return alloc_bootmem_core(p_bdata, size, align,
|
||||||
|
goal, limit);
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue