소스 검색

MIPS: Oprofile: Print error message if the CPU happen to have no counters.

Signed-off-by: Ralf Baechle <ralf@ongar.mips.com>

Ralf Baechle 20 년 전
부모
커밋
9efeae9a5c
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      arch/mips/oprofile/op_model_mipsxx.c

+ 3 - 1
arch/mips/oprofile/op_model_mipsxx.c

@@ -180,8 +180,10 @@ static int __init mipsxx_init(void)
 	int counters;
 
 	counters = n_counters();
-	if (counters == 0)
+	if (counters == 0) {
+		printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
 		return -ENODEV;
+	}
 
 	reset_counters(counters);