Perf: Make L1 PMU IRQ name target independent

Remove target name from IRQ string, since the percpu IRQ API
is shared with all Qcomm targets.

Change-Id: Id0e7d9267654b373e9360806900259e00bf5a0ab
Signed-off-by: Ashwin Chaugule <ashwinc@codeaurora.org>
This commit is contained in:
Ashwin Chaugule 2012-10-09 13:35:16 -04:00 committed by Stephen Boyd
parent f07d315204
commit 7a643b174e

View file

@ -540,8 +540,8 @@ msm_request_irq(int irq, irq_handler_t *handle_irq)
int err = 0;
int cpu;
err = request_percpu_irq(irq, *handle_irq, "krait-l1-armpmu",
&cpu_hw_events);
err = request_percpu_irq(irq, *handle_irq, "l1-armpmu",
&cpu_hw_events);
if (!err) {
for_each_cpu(cpu, cpu_online_mask) {