summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx88/cx88-dvb.c
diff options
context:
space:
mode:
authorMichael Krufky <devnull@localhost>2005-08-25 06:06:52 +0000
committerMichael Krufky <devnull@localhost>2005-08-25 06:06:52 +0000
commitd10b8fd1c7224e8bb945a0eceaa7bf121669ca0c (patch)
tree5b520e04e0b01422a122249fb6437a6ded0b3b7a /linux/drivers/media/video/cx88/cx88-dvb.c
parent19f256d6767783a1a9169a67e3b7eebb5f487415 (diff)
downloadmediapointer-dvb-s2-d10b8fd1c7224e8bb945a0eceaa7bf121669ca0c.tar.gz
mediapointer-dvb-s2-d10b8fd1c7224e8bb945a0eceaa7bf121669ca0c.tar.bz2
cx88-dvb has been incorrectly reporting the card name instead of frontend name:
DVB: registering new adapter (cx88[0]). DVB: registering frontend 0 (DViCO FusionHDTV 3 Gold-T)... This patch corrects this behavior, like so: DVB: registering new adapter (cx88[0]). DVB: registering frontend 0 (LG Electronics LGDT3302 VSB/QAM Frontend)... Also, this removes a bad PCI subsystem ID for saa713x Sabrent card, and renames DVICO --> DViCO for bttv. Signed-off-by: Michael Krufky <mkrufky@m1k.net>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-dvb.c')
-rw-r--r--linux/drivers/media/video/cx88/cx88-dvb.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-dvb.c b/linux/drivers/media/video/cx88/cx88-dvb.c
index a2e542a52..9b09d28d9 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.61 2005/08/19 15:55:16 mkrufky Exp $
+ * $Id: cx88-dvb.c,v 1.62 2005/08/25 06:06:52 mkrufky Exp $
*
* device driver for Conexant 2388x based TV cards
* MPEG Transport Stream (DVB) routines
@@ -412,11 +412,6 @@ static int dvb_register(struct cx8802_dev *dev)
dev->dvb.frontend->ops->info.frequency_max = dev->core->pll_desc->max;
}
- /* Copy the board name into the DVB structure */
- strlcpy(dev->dvb.frontend->ops->info.name,
- cx88_boards[dev->core->board].name,
- sizeof(dev->dvb.frontend->ops->info.name));
-
/* register everything */
return videobuf_dvb_register(&dev->dvb, THIS_MODULE, dev);
}