[MIPS] Allow hardwiring of the CPU type to a single type for optimization.
This saves a few k on systems which only ever ship with a single CPU type. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
@@ -954,7 +954,7 @@ asmlinkage void do_reserved(struct pt_regs *regs)
|
||||
*/
|
||||
static inline void parity_protection_init(void)
|
||||
{
|
||||
switch (current_cpu_data.cputype) {
|
||||
switch (current_cpu_type()) {
|
||||
case CPU_24K:
|
||||
case CPU_34K:
|
||||
case CPU_5KC:
|
||||
@@ -1549,8 +1549,8 @@ void __init trap_init(void)
|
||||
set_except_vector(12, handle_ov);
|
||||
set_except_vector(13, handle_tr);
|
||||
|
||||
if (current_cpu_data.cputype == CPU_R6000 ||
|
||||
current_cpu_data.cputype == CPU_R6000A) {
|
||||
if (current_cpu_type() == CPU_R6000 ||
|
||||
current_cpu_type() == CPU_R6000A) {
|
||||
/*
|
||||
* The R6000 is the only R-series CPU that features a machine
|
||||
* check exception (similar to the R4000 cache error) and
|
||||
|
||||
Reference in New Issue
Block a user