mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
sata_fsl: fix error handling of irq_of_parse_and_map
commit aad0b62412
upstream.
irq_of_parse_and_map() returns 0 on error (the result is unsigned int),
so testing for negative result never works.
Signed-off-by: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Zefan Li <lizefan@huawei.com>
This commit is contained in:
parent
1c84f5cc85
commit
00646dbf05
1 changed files with 1 additions and 1 deletions
|
@ -1426,7 +1426,7 @@ static int sata_fsl_probe(struct platform_device *ofdev)
|
|||
host_priv->csr_base = csr_base;
|
||||
|
||||
irq = irq_of_parse_and_map(ofdev->dev.of_node, 0);
|
||||
if (irq < 0) {
|
||||
if (!irq) {
|
||||
dev_err(&ofdev->dev, "invalid irq from platform\n");
|
||||
goto error_exit_with_cleanup;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue