aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorMarkus Rechberger <mrechberger@gmail.com>2007-04-27 11:31:07 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2007-04-27 14:43:26 -0400
commitced80c67cd1ed503c6fb72f02ac7342ab4ebf67a (patch)
treedfc6fcfb8559388b37eee1642a159bbe97f19107 /drivers/media
parent77b7477467824098741351b6253a4ad292e28df9 (diff)
V4L/DVB (5299): Added support for loading cx88-dvb and cx88-blackbird
Added support for loading cx88-dvb and cx88-blackbird Signed-off-by: Markus Rechberger <mrechberger@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/cx88/cx88-mpeg.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/drivers/media/video/cx88/cx88-mpeg.c b/drivers/media/video/cx88/cx88-mpeg.c
index cd01d23cd2f1..db98f1fd3965 100644
--- a/drivers/media/video/cx88/cx88-mpeg.c
+++ b/drivers/media/video/cx88/cx88-mpeg.c
@@ -53,19 +53,11 @@ MODULE_PARM_DESC(debug,"enable debug messages [mpeg]");
53static void request_module_async(struct work_struct *work) 53static void request_module_async(struct work_struct *work)
54{ 54{
55 struct cx8802_dev *dev=container_of(work, struct cx8802_dev, request_module_wk); 55 struct cx8802_dev *dev=container_of(work, struct cx8802_dev, request_module_wk);
56 switch (cx88_boards[dev->core->board].mpeg) { 56
57 case CX88_MPEG_BLACKBIRD: 57 if (cx88_boards[dev->core->board].mpeg & CX88_MPEG_DVB)
58 request_module("cx88-blackbird");
59 break;
60 case CX88_MPEG_DVB:
61 request_module("cx88-dvb"); 58 request_module("cx88-dvb");
62 break; 59 if (cx88_boards[dev->core->board].mpeg & CX88_MPEG_BLACKBIRD)
63 case CX88_BOARD_NONE: 60 request_module("cx88-blackbird");
64 /* reaching this one isn't possible */
65 break;
66 default:
67 printk("cx88-mpeg.c: WARNING extension [%d] is not supposed to be supported\n",cx88_boards[dev->core->board].mpeg);
68 }
69} 61}
70 62
71static void request_modules(struct cx8802_dev *dev) 63static void request_modules(struct cx8802_dev *dev)