diff options
author | Gerd Knorr <devnull@localhost> | 2005-03-07 15:58:05 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2005-03-07 15:58:05 +0000 |
commit | 0891e39889f25110ffe18878fe188359c51e51af (patch) | |
tree | b82532160909c1e04c9da829524dcabeddff239d /linux/drivers/media/video/cx88 | |
parent | a536730c24efdd1bd3de43ebd94939d0b79f3b05 (diff) | |
download | mediapointer-dvb-s2-0891e39889f25110ffe18878fe188359c51e51af.tar.gz mediapointer-dvb-s2-0891e39889f25110ffe18878fe188359c51e51af.tar.bz2 |
- minor cleanup.
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-blackbird.c | 4 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-dvb.c | 4 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-video.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-blackbird.c b/linux/drivers/media/video/cx88/cx88-blackbird.c index b981cd54a..46d6778b8 100644 --- a/linux/drivers/media/video/cx88/cx88-blackbird.c +++ b/linux/drivers/media/video/cx88/cx88-blackbird.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-blackbird.c,v 1.25 2005/02/16 13:11:55 kraxel Exp $ + * $Id: cx88-blackbird.c,v 1.26 2005/03/07 15:58:05 kraxel Exp $ * * Support for a cx23416 mpeg encoder via cx2388x host port. * "blackbird" reference design. @@ -892,7 +892,7 @@ static int blackbird_init(void) printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n", SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); #endif - return pci_module_init(&blackbird_pci_driver); + return pci_register_driver(&blackbird_pci_driver); } static void blackbird_fini(void) diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c index 3d18d14ec..227bf1334 100644 --- a/linux/drivers/media/video/cx88/cx88-dvb.c +++ b/linux/drivers/media/video/cx88/cx88-dvb.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-dvb.c,v 1.30 2005/03/07 14:18:00 kraxel Exp $ + * $Id: cx88-dvb.c,v 1.31 2005/03/07 15:58:05 kraxel Exp $ * * device driver for Conexant 2388x based TV cards * MPEG Transport Stream (DVB) routines @@ -362,7 +362,7 @@ static int dvb_init(void) printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n", SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); #endif - return pci_module_init(&dvb_pci_driver); + return pci_register_driver(&dvb_pci_driver); } static void dvb_fini(void) diff --git a/linux/drivers/media/video/cx88/cx88-video.c b/linux/drivers/media/video/cx88/cx88-video.c index 91d4d9ce7..06580ac8c 100644 --- a/linux/drivers/media/video/cx88/cx88-video.c +++ b/linux/drivers/media/video/cx88/cx88-video.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-video.c,v 1.57 2005/02/24 13:32:30 kraxel Exp $ + * $Id: cx88-video.c,v 1.58 2005/03/07 15:58:05 kraxel Exp $ * * device driver for Conexant 2388x based TV cards * video4linux video interface @@ -2273,7 +2273,7 @@ static int cx8800_init(void) printk(KERN_INFO "cx2388x: snapshot date %04d-%02d-%02d\n", SNAPSHOT/10000, (SNAPSHOT/100)%100, SNAPSHOT%100); #endif - return pci_module_init(&cx8800_pci_driver); + return pci_register_driver(&cx8800_pci_driver); } static void cx8800_fini(void) |