aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/mailbox
diff options
context:
space:
mode:
authorBrandon Maier <brandon.maier@rockwellcollins.com>2019-11-17 14:36:49 -0600
committerJassi Brar <jaswinder.singh@linaro.org>2019-11-26 22:44:53 -0600
commit0434d3f4525af32bc29f858f71300351041f552d (patch)
treed04965fb46950c24c6dd490d19df01b3c48576b0 /drivers/mailbox
parentLinux 5.4-rc8 (diff)
downloadwireguard-linux-0434d3f4525af32bc29f858f71300351041f552d.tar.xz
wireguard-linux-0434d3f4525af32bc29f858f71300351041f552d.zip
mailbox/omap: Handle if CONFIG_PM is disabled
If CONFIG_PM is disabled, pm_runtime_put_sync() returns -ENOSYS. Signed-off-by: Brandon Maier <brandon.maier@rockwellcollins.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox')
-rw-r--r--drivers/mailbox/omap-mailbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mailbox/omap-mailbox.c b/drivers/mailbox/omap-mailbox.c
index a3cd63583cf7..5978a35aac6d 100644
--- a/drivers/mailbox/omap-mailbox.c
+++ b/drivers/mailbox/omap-mailbox.c
@@ -868,7 +868,7 @@ static int omap_mbox_probe(struct platform_device *pdev)
dev_info(mdev->dev, "omap mailbox rev 0x%x\n", l);
ret = pm_runtime_put_sync(mdev->dev);
- if (ret < 0)
+ if (ret < 0 && ret != -ENOSYS)
goto unregister;
devm_kfree(&pdev->dev, finfoblk);