summaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb/bt8xx
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-06-04 11:07:16 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 19:07:51 -0300
commite36bc31f823d6089bedc935fea82b6d36793412a (patch)
treea5c2b21ba314507ec61b00ded3ce6607c8094c86 /drivers/media/dvb/bt8xx
parent96ceea2734d922d07000e98606231f3d675e09f8 (diff)
downloadop-kernel-dev-e36bc31f823d6089bedc935fea82b6d36793412a.zip
op-kernel-dev-e36bc31f823d6089bedc935fea82b6d36793412a.tar.gz
V4L/DVB (11992): Add missing __devexit_p()
Add missing __devexit_p() to several drivers. Also add a few missing __init, __devinit and __exit markers. These errors could result in build failures depending on the kernel configuration. Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/bt8xx')
-rw-r--r--drivers/media/dvb/bt8xx/bt878.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/media/dvb/bt8xx/bt878.c b/drivers/media/dvb/bt8xx/bt878.c
index 56d8fab..a24c125 100644
--- a/drivers/media/dvb/bt8xx/bt878.c
+++ b/drivers/media/dvb/bt8xx/bt878.c
@@ -508,12 +508,6 @@ static int __devinit bt878_probe(struct pci_dev *dev,
pci_set_master(dev);
pci_set_drvdata(dev, bt);
-/* if(init_bt878(btv) < 0) {
- bt878_remove(dev);
- return -EIO;
- }
-*/
-
if ((result = bt878_mem_alloc(bt))) {
printk(KERN_ERR "bt878: failed to allocate memory!\n");
goto fail2;
@@ -579,7 +573,7 @@ static struct pci_driver bt878_pci_driver = {
.name = "bt878",
.id_table = bt878_pci_tbl,
.probe = bt878_probe,
- .remove = bt878_remove,
+ .remove = __devexit_p(bt878_remove),
};
static int bt878_pci_driver_registered;
OpenPOWER on IntegriCloud