projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e62b9e6
)
perf/arm_pmu_platform: fix tests for platform_get_irq() failure
author
Yu Zhe
<yuzhe@nfschina.com>
Thu, 25 Aug 2022 01:18:44 +0000
(09:18 +0800)
committer
Will Deacon
<will@kernel.org>
Thu, 1 Sep 2022 11:01:40 +0000
(12:01 +0100)
The platform_get_irq() returns negative error codes. It can't actually
return zero.
Signed-off-by: Yu Zhe <yuzhe@nfschina.com>
Link:
https://lore.kernel.org/r/20220825011844.8536-1-yuzhe@nfschina.com
Signed-off-by: Will Deacon <will@kernel.org>
drivers/perf/arm_pmu_platform.c
patch
|
blob
|
history
diff --git
a/drivers/perf/arm_pmu_platform.c
b/drivers/perf/arm_pmu_platform.c
index
513de1f
..
933b96e
100644
(file)
--- a/
drivers/perf/arm_pmu_platform.c
+++ b/
drivers/perf/arm_pmu_platform.c
@@
-117,7
+117,7
@@
static int pmu_parse_irqs(struct arm_pmu *pmu)
if (num_irqs == 1) {
int irq = platform_get_irq(pdev, 0);
- if (
irq
&& irq_is_percpu_devid(irq))
+ if (
(irq > 0)
&& irq_is_percpu_devid(irq))
return pmu_parse_percpu_irq(pmu, irq);
}