projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbcaac6
)
mmc: s3cmci: Fix platform_get_irq's error checking
author
Arvind Yadav
<arvind.yadav.cs@gmail.com>
Sun, 19 Nov 2017 04:52:44 +0000
(10:22 +0530)
committer
Ulf Hansson
<ulf.hansson@linaro.org>
Fri, 15 Dec 2017 08:13:16 +0000
(09:13 +0100)
The platform_get_irq() function returns negative if an error occurs.
zero or positive number on success. platform_get_irq() error checking
for zero is not correct.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/s3cmci.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/host/s3cmci.c
b/drivers/mmc/host/s3cmci.c
index f7f157a62a4a7dfa7155b5fe9933ead9f870ad1b..36daee1e6588fe5f4d2c87fc418395ef0bb8a85f 100644
(file)
--- a/
drivers/mmc/host/s3cmci.c
+++ b/
drivers/mmc/host/s3cmci.c
@@
-1658,7
+1658,7
@@
static int s3cmci_probe(struct platform_device *pdev)
}
host->irq = platform_get_irq(pdev, 0);
- if (host->irq
=
= 0) {
+ if (host->irq
<
= 0) {
dev_err(&pdev->dev, "failed to get interrupt resource.\n");
ret = -EINVAL;
goto probe_iounmap;