Commit aa2dc903 authored by Vaibhav Hiremath's avatar Vaibhav Hiremath Committed by Mauro Carvalho Chehab

V4L/DVB: V4L: vpfe_capture: Return 0 from suspend/resume

Now Suspend/Resume functionality is being handled by respective CCDC
code, so return true (0) from bridge suspend/resume function.
Signed-off-by: default avatarVaibhav Hiremath <hvaibhav@ti.com>
Signed-off-by: default avatarMuralidharan Karicheri <mkaricheri@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 21aa300e
...@@ -2031,18 +2031,14 @@ static int __devexit vpfe_remove(struct platform_device *pdev) ...@@ -2031,18 +2031,14 @@ static int __devexit vpfe_remove(struct platform_device *pdev)
return 0; return 0;
} }
static int static int vpfe_suspend(struct device *dev)
vpfe_suspend(struct device *dev)
{ {
/* add suspend code here later */ return 0;
return -1;
} }
static int static int vpfe_resume(struct device *dev)
vpfe_resume(struct device *dev)
{ {
/* add resume code here later */ return 0;
return -1;
} }
static const struct dev_pm_ops vpfe_dev_pm_ops = { static const struct dev_pm_ops vpfe_dev_pm_ops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment