···7575 int res;76767777 switch (current_cpu_data.cputype) {7878+ case CPU_5KC:7979+ case CPU_20KC:7880 case CPU_24K:8181+ case CPU_25KF:7982 lmodel = &op_model_mipsxx;8083 break;8184
+12
arch/mips/oprofile/op_model_mipsxx.c
···189189190190 op_model_mipsxx.num_counters = counters;191191 switch (current_cpu_data.cputype) {192192+ case CPU_20KC:193193+ op_model_mipsxx.cpu_type = "mips/20K";194194+ break;195195+192196 case CPU_24K:193197 op_model_mipsxx.cpu_type = "mips/24K";198198+ break;199199+200200+ case CPU_25KF:201201+ op_model_mipsxx.cpu_type = "mips/25K";202202+ break;203203+204204+ case CPU_5KC:205205+ op_model_mipsxx.cpu_type = "mips/5K";194206 break;195207196208 default: