aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/gspca/pac7311.c
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2012-06-30 05:44:47 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-07-30 17:39:22 -0400
commit8bb58964bc139d5ff5285f84aa302977d221754d (patch)
tree29ae18fe48ec1ae609d2ac039b3fee76231f3bc2 /drivers/media/video/gspca/pac7311.c
parent12891794046c56957008e59a21da1b4572068430 (diff)
[media] gspca: Add reset_resume callback to all sub-drivers
1) The gspca-core's suspend/resume code is such that resume being called after a reset is safe / ok. 2) All devices tested sofar seem to need the reset_resume callback to work properly over a suspend 3) The USB-core won't call the reset_resume callback for devices which don't need it Thus it seems the simplest and the best to just add the callback to all sub-drivers, rather then adding the callbacks one-by-one as each driver gets tested with suspend/resume. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/gspca/pac7311.c')
-rw-r--r--drivers/media/video/gspca/pac7311.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/video/gspca/pac7311.c b/drivers/media/video/gspca/pac7311.c
index 115da169f32a..ba3558d3f017 100644
--- a/drivers/media/video/gspca/pac7311.c
+++ b/drivers/media/video/gspca/pac7311.c
@@ -694,6 +694,7 @@ static struct usb_driver sd_driver = {
694#ifdef CONFIG_PM 694#ifdef CONFIG_PM
695 .suspend = gspca_suspend, 695 .suspend = gspca_suspend,
696 .resume = gspca_resume, 696 .resume = gspca_resume,
697 .reset_resume = gspca_resume,
697#endif 698#endif
698}; 699};
699 700