[MIPS] Oprofile: Add missing break statements.

This was causing oprofile to fail on R10000, R12000, R14000.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+2
+2
arch/mips/oprofile/op_model_mipsxx.c
··· 223 switch (current_cpu_data.cputype) { 224 case CPU_R10000: 225 counters = 2; 226 227 case CPU_R12000: 228 case CPU_R14000: 229 counters = 4; 230 231 default: 232 counters = __n_counters();
··· 223 switch (current_cpu_data.cputype) { 224 case CPU_R10000: 225 counters = 2; 226 + break; 227 228 case CPU_R12000: 229 case CPU_R14000: 230 counters = 4; 231 + break; 232 233 default: 234 counters = __n_counters();