diff options
author | Ivan T. Ivanov <iivanov@mm-sol.com> | 2014-04-28 16:34:14 +0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-04-30 11:28:44 -0500 |
commit | f60c114a3ae528dfc6750baad58cf822d0b282a2 (patch) | |
tree | a2807542b8ff569220c902e81d5641127eec3a60 /drivers/usb/phy | |
parent | f5ef2372f608df4bb54b4fc7c9e43fb8bbef4795 (diff) |
usb: phy: msm: Properly check result from platform_get_irq()
Function return negative code on error.
Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/phy-msm-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/phy/phy-msm-usb.c b/drivers/usb/phy/phy-msm-usb.c index bd9e286ccd66..7e968aa143ce 100644 --- a/drivers/usb/phy/phy-msm-usb.c +++ b/drivers/usb/phy/phy-msm-usb.c @@ -1413,7 +1413,7 @@ static int msm_otg_probe(struct platform_device *pdev) dev_info(&pdev->dev, "OTG regs = %p\n", motg->regs); motg->irq = platform_get_irq(pdev, 0); - if (!motg->irq) { + if (motg->irq < 0) { dev_err(&pdev->dev, "platform_get_irq failed\n"); return motg->irq; } |