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

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
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -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 = {