diff options
author | Tai Nguyen <ttnguyen@apm.com> | 2016-10-13 14:09:16 -0400 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-10-17 10:50:07 -0400 |
commit | 9a1a1f404be55b07aea64864f98d7306cc493360 (patch) | |
tree | eb54fbb4e307b5261227c330bb50b700820f3198 | |
parent | baa5567c18d17843815d1d9150424d31f238e363 (diff) |
perf: xgene: Remove bogus IS_ERR() check
In acpi_get_pmu_hw_inf we pass the address of a local variable to IS_ERR(),
which doesn't make sense, as the pointer must be a real, valid pointer.
This doesn't cause a functional problem, as IS_ERR() will evaluate as
false, but the check is bogus and causes static checkers to complain.
Remove the bogus check.
The bug is reported by Dan Carpenter <dan.carpenter@oracle.com> in [1]
[1] https://www.spinics.net/lists/arm-kernel/msg535957.html
Signed-off-by: Tai Nguyen <ttnguyen@apm.com>
Acked-by: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r-- | drivers/perf/xgene_pmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/perf/xgene_pmu.c b/drivers/perf/xgene_pmu.c index c2ac7646b99f..a8ac4bcef2c0 100644 --- a/drivers/perf/xgene_pmu.c +++ b/drivers/perf/xgene_pmu.c | |||
@@ -1011,7 +1011,7 @@ xgene_pmu_dev_ctx *acpi_get_pmu_hw_inf(struct xgene_pmu *xgene_pmu, | |||
1011 | rc = acpi_dev_get_resources(adev, &resource_list, | 1011 | rc = acpi_dev_get_resources(adev, &resource_list, |
1012 | acpi_pmu_dev_add_resource, &res); | 1012 | acpi_pmu_dev_add_resource, &res); |
1013 | acpi_dev_free_resource_list(&resource_list); | 1013 | acpi_dev_free_resource_list(&resource_list); |
1014 | if (rc < 0 || IS_ERR(&res)) { | 1014 | if (rc < 0) { |
1015 | dev_err(dev, "PMU type %d: No resource address found\n", type); | 1015 | dev_err(dev, "PMU type %d: No resource address found\n", type); |
1016 | goto err; | 1016 | goto err; |
1017 | } | 1017 | } |