mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 04:21:03 -04:00
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: Vaibhav Hiremath <hvaibhav@ti.com> Signed-off-by: Muralidharan Karicheri <mkaricheri@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
21aa300e16
commit
aa2dc90348
@@ -2031,18 +2031,14 @@ static int __devexit vpfe_remove(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
vpfe_suspend(struct device *dev)
|
||||
static int vpfe_suspend(struct device *dev)
|
||||
{
|
||||
/* add suspend code here later */
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int
|
||||
vpfe_resume(struct device *dev)
|
||||
static int vpfe_resume(struct device *dev)
|
||||
{
|
||||
/* add resume code here later */
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct dev_pm_ops vpfe_dev_pm_ops = {
|
||||
|
||||
Reference in New Issue
Block a user