From: Stefan Sørensen Date: Mon, 3 Feb 2014 14:54:09 +0000 (+0100) Subject: mtd: elm: Use correct check on return value of pm_runtime_get_sync X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=0a21552a6e8ab9d3bacd490f5b94a178ce4d661d;p=deliverable%2Flinux.git mtd: elm: Use correct check on return value of pm_runtime_get_sync The ELM driver incorrectly reagard any non-zero return value from pm_runtime_get_sync as an error, but it may return 1 if the device was already active. Fix to only error when return value is negative. Signed-off-by: Stefan Sørensen Signed-off-by: Brian Norris --- diff --git a/drivers/mtd/devices/elm.c b/drivers/mtd/devices/elm.c index d1dd6a33a050..e2c073c5a7cc 100644 --- a/drivers/mtd/devices/elm.c +++ b/drivers/mtd/devices/elm.c @@ -380,7 +380,7 @@ static int elm_probe(struct platform_device *pdev) } pm_runtime_enable(&pdev->dev); - if (pm_runtime_get_sync(&pdev->dev)) { + if (pm_runtime_get_sync(&pdev->dev) < 0) { ret = -EINVAL; pm_runtime_disable(&pdev->dev); dev_err(&pdev->dev, "can't enable clock\n");