From: Jaswinder Singh Date: Mon, 15 Dec 2008 17:41:10 +0000 (+0530) Subject: x86: setup.c find_and_reserve_crashkernel should be static X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a9b43c7d9890066709609df849959009645c1a19;p=deliverable%2Flinux.git x86: setup.c find_and_reserve_crashkernel should be static Impact: cleanup, reduce kernel size a bit Signed-off-by: Jaswinder Singh Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 9d5674f7b6cc..81f5d22747ae 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -448,6 +448,7 @@ static void __init reserve_early_setup_data(void) * @size: Size of the crashkernel memory to reserve. * Returns the base address on success, and -1ULL on failure. */ +static unsigned long long __init find_and_reserve_crashkernel(unsigned long long size) { const unsigned long long alignment = 16<<20; /* 16M */