[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>
This commit is contained in:
Arnd Bergmann 2012-05-03 18:22:22 -03:00 committed by Mauro Carvalho Chehab
parent 14f2226022
commit cd624c7b7c
7 changed files with 7 additions and 7 deletions

View File

@ -1695,7 +1695,7 @@ static struct pci_driver ddb_pci_driver = {
.name = "DDBridge", .name = "DDBridge",
.id_table = ddb_id_tbl, .id_table = ddb_id_tbl,
.probe = ddb_probe, .probe = ddb_probe,
.remove = ddb_remove, .remove = __devexit_p(ddb_remove),
}; };
static __init int module_init_ddbridge(void) static __init int module_init_ddbridge(void)

View File

@ -223,7 +223,7 @@ static struct platform_driver timbradio_platform_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = timbradio_probe, .probe = timbradio_probe,
.remove = timbradio_remove, .remove = __devexit_p(timbradio_remove),
}; };
module_platform_driver(timbradio_platform_driver); module_platform_driver(timbradio_platform_driver);

View File

@ -430,7 +430,7 @@ static struct i2c_driver saa7706h_driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
}, },
.probe = saa7706h_probe, .probe = saa7706h_probe,
.remove = saa7706h_remove, .remove = __devexit_p(saa7706h_remove),
.id_table = saa7706h_id, .id_table = saa7706h_id,
}; };

View File

@ -211,7 +211,7 @@ static struct i2c_driver tef6862_driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
}, },
.probe = tef6862_probe, .probe = tef6862_probe,
.remove = tef6862_remove, .remove = __devexit_p(tef6862_remove),
.id_table = tef6862_id, .id_table = tef6862_id,
}; };

View File

@ -255,7 +255,7 @@ static struct usb_device_id imon_usb_id_table[] = {
static struct usb_driver imon_driver = { static struct usb_driver imon_driver = {
.name = MOD_NAME, .name = MOD_NAME,
.probe = imon_probe, .probe = imon_probe,
.disconnect = imon_disconnect, .disconnect = __devexit_p(imon_disconnect),
.suspend = imon_suspend, .suspend = imon_suspend,
.resume = imon_resume, .resume = imon_resume,
.id_table = imon_usb_id_table, .id_table = imon_usb_id_table,

View File

@ -1442,7 +1442,7 @@ static int mceusb_dev_resume(struct usb_interface *intf)
static struct usb_driver mceusb_dev_driver = { static struct usb_driver mceusb_dev_driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
.probe = mceusb_dev_probe, .probe = mceusb_dev_probe,
.disconnect = mceusb_dev_disconnect, .disconnect = __devexit_p(mceusb_dev_disconnect),
.suspend = mceusb_dev_suspend, .suspend = mceusb_dev_suspend,
.resume = mceusb_dev_resume, .resume = mceusb_dev_resume,
.reset_resume = mceusb_dev_resume, .reset_resume = mceusb_dev_resume,

View File

@ -1277,7 +1277,7 @@ static int redrat3_dev_resume(struct usb_interface *intf)
static struct usb_driver redrat3_dev_driver = { static struct usb_driver redrat3_dev_driver = {
.name = DRIVER_NAME, .name = DRIVER_NAME,
.probe = redrat3_dev_probe, .probe = redrat3_dev_probe,
.disconnect = redrat3_dev_disconnect, .disconnect = __devexit_p(redrat3_dev_disconnect),
.suspend = redrat3_dev_suspend, .suspend = redrat3_dev_suspend,
.resume = redrat3_dev_resume, .resume = redrat3_dev_resume,
.reset_resume = redrat3_dev_resume, .reset_resume = redrat3_dev_resume,