diff options
author | Thiemo Seufer <ths@networkno.de> | 2006-07-03 12:30:01 (GMT) |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-07-13 20:26:01 (GMT) |
commit | c36cd4bab5084798b401d529129a950f4a48662d (patch) | |
tree | 423943e169f670f344cc009be4488d62fdcd2e3b /arch/mips/kernel | |
parent | 3a01c49ad81d301fe7265dd63bfb15ee3c3754ef (diff) | |
download | linux-fsl-qoriq-c36cd4bab5084798b401d529129a950f4a48662d.tar.xz |
[MIPS] Save 2k text size in cpu-probe
The appended patch drops the inline for decode_configs, this saves about
2k of text size.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 17eea1f..aa2caa6 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -548,7 +548,7 @@ static inline unsigned int decode_config3(struct cpuinfo_mips *c) return config3 & MIPS_CONF_M; } -static inline void decode_configs(struct cpuinfo_mips *c) +static void __init decode_configs(struct cpuinfo_mips *c) { /* MIPS32 or MIPS64 compliant CPU. */ c->options = MIPS_CPU_4KEX | MIPS_CPU_4K_CACHE | MIPS_CPU_COUNTER | |