MIPS: Oprofile: Print error message if the CPU happen to have no counters.
Signed-off-by: Ralf Baechle <ralf@ongar.mips.com>
This commit is contained in:
parent
ba339c03e2
commit
9efeae9a5c
@ -180,8 +180,10 @@ static int __init mipsxx_init(void)
|
|||||||
int counters;
|
int counters;
|
||||||
|
|
||||||
counters = n_counters();
|
counters = n_counters();
|
||||||
if (counters == 0)
|
if (counters == 0) {
|
||||||
|
printk(KERN_ERR "Oprofile: CPU has no performance counters\n");
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
}
|
||||||
|
|
||||||
reset_counters(counters);
|
reset_counters(counters);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user