diff options
author | Denys Vlasenko <[email protected]> | 2015-09-28 14:23:55 +0200 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2015-09-30 21:54:40 +0200 |
commit | e6e5f84092b1f3a8733c20e26838af4e21a4854f (patch) | |
tree | 90c830e86f75e22a01cf2547e03bbecaeb97b3cc | |
parent | 9ffecb10283508260936b96022d4ee43a7798b4c (diff) |
x86/e820: Deinline e820_type_to_string, save 126 bytes
This function compiles to 102 bytes of machine code. It has two
callsites.
Signed-off-by: Denys Vlasenko <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Brian Gerst <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
-rw-r--r-- | arch/x86/kernel/e820.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index a102564d08eb..569c1e4f96fe 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c @@ -911,7 +911,7 @@ void __init finish_e820_parsing(void) } } -static inline const char *e820_type_to_string(int e820_type) +static const char *e820_type_to_string(int e820_type) { switch (e820_type) { case E820_RESERVED_KERN: |