diff options
author | Jaswinder Singh <jaswinder@infradead.org> | 2008-12-15 12:41:10 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-16 15:18:22 -0500 |
commit | a9b43c7d9890066709609df849959009645c1a19 (patch) | |
tree | 49aa4395770d73189343f16e0f2b40254b7616db /arch/x86/kernel/setup.c | |
parent | c0195b6da08c4ddd8c8ea830f6c3c40bc7f82071 (diff) |
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/x86/kernel/setup.c')
-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) | |||
448 | * @size: Size of the crashkernel memory to reserve. | 448 | * @size: Size of the crashkernel memory to reserve. |
449 | * Returns the base address on success, and -1ULL on failure. | 449 | * Returns the base address on success, and -1ULL on failure. |
450 | */ | 450 | */ |
451 | static | ||
451 | unsigned long long __init find_and_reserve_crashkernel(unsigned long long size) | 452 | unsigned long long __init find_and_reserve_crashkernel(unsigned long long size) |
452 | { | 453 | { |
453 | const unsigned long long alignment = 16<<20; /* 16M */ | 454 | const unsigned long long alignment = 16<<20; /* 16M */ |