From: Dmitry Torokhov Date: Fri, 14 Nov 2014 21:39:05 +0000 (-0800) Subject: sata_fsl: fix error handling of irq_of_parse_and_map X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=69052167b48fb6878001073cfe44f5b1949538ae;p=linux-edison.git sata_fsl: fix error handling of irq_of_parse_and_map commit aad0b624129709c94c2e19e583b6053520353fa8 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 Signed-off-by: Tejun Heo Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c index 8401061b404..38a2389f5b1 100644 --- a/drivers/ata/sata_fsl.c +++ b/drivers/ata/sata_fsl.c @@ -1501,7 +1501,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; }