aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88/cx88-dvb.c
diff options
context:
space:
mode:
authorJanne Grunau <janne-dvb@grunau.be>2008-04-09 18:13:13 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:08:00 -0400
commit78e92006f410a4044f8c1760c25ac9d11d259aa2 (patch)
tree293de8abe261420df2db5e12936ec2721ea52c7c /drivers/media/video/cx88/cx88-dvb.c
parent9950c1b5b4b86d4aae12853c2f0a0ef11d976764 (diff)
V4L/DVB (7538): Adds selectable adapter numbers as per module option
The adapter_nr module options can be used to allocate static adapter numbers on a driver level. It avoids problems with changing DVB apapter numbers after warm/cold boot or device unplugging and repluging. Each driver holds DVB_MAX_ADAPTER long array of the preferred order of adapter numbers. options dvb-usb-dib0700 adapter_nr=7,6,5,4,3,2,1,0 would result in a reversed allocation of adapter numbers. With adapter_nr=2,5 it tries first to get adapter number 2 and 5. If both are already in use it will allocate the lowest free adapter number. Signed-off-by: Janne Grunau <janne-dvb@grunau.be> Acked-by: Hermann Pitton <hermann.pitton@arcor.de> Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-dvb.c')
-rw-r--r--drivers/media/video/cx88/cx88-dvb.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c
index e83d9869e68b..fda7334d934b 100644
--- a/drivers/media/video/cx88/cx88-dvb.c
+++ b/drivers/media/video/cx88/cx88-dvb.c
@@ -58,6 +58,8 @@ static unsigned int debug;
58module_param(debug, int, 0644); 58module_param(debug, int, 0644);
59MODULE_PARM_DESC(debug,"enable debug messages [dvb]"); 59MODULE_PARM_DESC(debug,"enable debug messages [dvb]");
60 60
61DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
62
61#define dprintk(level,fmt, arg...) if (debug >= level) \ 63#define dprintk(level,fmt, arg...) if (debug >= level) \
62 printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg) 64 printk(KERN_DEBUG "%s/2-dvb: " fmt, core->name, ## arg)
63 65
@@ -862,7 +864,8 @@ static int dvb_register(struct cx8802_dev *dev)
862 cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL); 864 cx88_call_i2c_clients (dev->core, TUNER_SET_STANDBY, NULL);
863 865
864 /* register everything */ 866 /* register everything */
865 return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev, &dev->pci->dev); 867 return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev,
868 &dev->pci->dev, adapter_nr);
866} 869}
867 870
868/* ----------------------------------------------------------- */ 871/* ----------------------------------------------------------- */