diff options
author | Jaswinder Singh <jaswinder@infradead.org> | 2008-12-15 18:41:10 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-16 21:18:22 +0100 |
commit | a9b43c7d9890066709609df849959009645c1a19 (patch) | |
tree | 49aa4395770d73189343f16e0f2b40254b7616db /arch | |
parent | x86: ldt.c declare sys_modify_ldt before they get used (diff) | |
download | linux-a9b43c7d9890066709609df849959009645c1a19.tar.xz linux-a9b43c7d9890066709609df849959009645c1a19.zip |
x86: setup.c find_and_reserve_crashkernel should be static
Impact: cleanup, reduce kernel size a bit
Signed-off-by: Jaswinder Singh <jaswinder@infradead.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 */ |