aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/rc/redrat3.c
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2012-05-03 17:22:22 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-05-15 06:53:51 -0400
commitcd624c7b7ce3c3cfa09845dcefbe856bf9f9c4c6 (patch)
tree17297280d394c1c01c98f61d1f0564a9bba77413 /drivers/media/rc/redrat3.c
parent14f2226022be6b169faeee3f0f6ca848170fdb3d (diff)
[media] drivers/media: add missing __devexit_p() annotations
Drivers that refer to a __devexit function in an operations structure need to annotate that pointer with __devexit_p so replace it with a NULL pointer when the section gets discarded. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/rc/redrat3.c')
-rw-r--r--drivers/media/rc/redrat3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/redrat3.c b/drivers/media/rc/redrat3.c
index ad95c67a4dba..2878b0ed9741 100644
--- a/drivers/media/rc/redrat3.c
+++ b/drivers/media/rc/redrat3.c
@@ -1277,7 +1277,7 @@ static int redrat3_dev_resume(struct usb_interface *intf)
1277static struct usb_driver redrat3_dev_driver = { 1277static struct usb_driver redrat3_dev_driver = {
1278 .name = DRIVER_NAME, 1278 .name = DRIVER_NAME,
1279 .probe = redrat3_dev_probe, 1279 .probe = redrat3_dev_probe,
1280 .disconnect = redrat3_dev_disconnect, 1280 .disconnect = __devexit_p(redrat3_dev_disconnect),
1281 .suspend = redrat3_dev_suspend, 1281 .suspend = redrat3_dev_suspend,
1282 .resume = redrat3_dev_resume, 1282 .resume = redrat3_dev_resume,
1283 .reset_resume = redrat3_dev_resume, 1283 .reset_resume = redrat3_dev_resume,