aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Millan <[email protected]>2011-04-18 11:37:55 -0700
committerRalf Baechle <[email protected]>2011-05-19 09:55:48 +0100
commitc094c99e659efedcbb05a0f75b8f77145d8ec539 (patch)
tree92044a50986f7b56c4270273b2040f04041ca92e
parent6edde0247644db475f68f25dcb1bf72260600081 (diff)
MIPS: Introduce set_elf_platform() helper function
Replace these sequences: if (cpu == 0) __elf_platform = "foo"; with a trivial inline function. Signed-off-by: Robert Millan <[email protected]> Signed-off-by: Kevin Cernekee <[email protected]> Signed-off-by: David Daney <[email protected]> Cc: wu zhangjin <[email protected]> Cc: Aurelien Jarno <[email protected]> Cc: [email protected] Cc: [email protected] Patchwork: https://patchwork.linux-mips.org/patch/2304/ Patchwork: https://patchwork.linux-mips.org/patch/2374/ Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r--arch/mips/kernel/cpu-probe.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index c7b7eb24e277..aa86250844ca 100644
--- a/arch/mips/kernel/cpu-probe.c
+++ b/arch/mips/kernel/cpu-probe.c
@@ -291,6 +291,12 @@ static inline int cpu_has_confreg(void)
#endif
}
+static inline void set_elf_platform(int cpu, const char *plat)
+{
+ if (cpu == 0)
+ __elf_platform = plat;
+}
+
/*
* Get the FPU Implementation/Revision.
*/
@@ -956,14 +962,12 @@ static inline void cpu_probe_cavium(struct cpuinfo_mips *c, unsigned int cpu)
c->cputype = CPU_CAVIUM_OCTEON_PLUS;
__cpu_name[cpu] = "Cavium Octeon+";
platform:
- if (cpu == 0)
- __elf_platform = "octeon";
+ set_elf_platform(cpu, "octeon");
break;
case PRID_IMP_CAVIUM_CN63XX:
c->cputype = CPU_CAVIUM_OCTEON2;
__cpu_name[cpu] = "Cavium Octeon II";
- if (cpu == 0)
- __elf_platform = "octeon2";
+ set_elf_platform(cpu, "octeon2");
break;
default:
printk(KERN_INFO "Unknown Octeon chip!\n");