diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-21 03:58:48 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-21 03:58:48 -0300 |
commit | b6aa0e3bb3f6ae6815f6fc303b9ee734fdaa8cbf (patch) | |
tree | 4ff0cb3d8e934e525a2fd557adced2a2c238b5cf /linux/drivers/media/video/cx23885/cx23885-dvb.c | |
parent | eb66d59f64f9a1ef31afcc6225abc5e39aa7fa40 (diff) | |
download | mediapointer-dvb-s2-b6aa0e3bb3f6ae6815f6fc303b9ee734fdaa8cbf.tar.gz mediapointer-dvb-s2-b6aa0e3bb3f6ae6815f6fc303b9ee734fdaa8cbf.tar.bz2 |
tuner-xc2028: Several fixes to SCODE
From: Mauro Carvalho Chehab <mchehab@infradead.org>
This patch fixes several issues on SCODE:
1) The extracting tool weren't generating the proper tags for SCODE. This
has almost no effect, since those tags shouldn't be used;
2) DIBCOM52 were using a wrong IF. It should be 5200, instead of 5700;
3) seek_firmware were wanting an exact match for firmware type. This is
wrong. As result, no SCODE firmware were loaded;
4) A few files were including the wrong file for seeking demod firmwares;
5) XC3028_FE_DEFAULT can be used, if user doesn't want to load a firmware.
However, this weren't documentated. This feature require more testing.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx23885/cx23885-dvb.c')
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-dvb.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-dvb.c b/linux/drivers/media/video/cx23885/cx23885-dvb.c index 84496b6da..5923f214e 100644 --- a/linux/drivers/media/video/cx23885/cx23885-dvb.c +++ b/linux/drivers/media/video/cx23885/cx23885-dvb.c @@ -40,7 +40,6 @@ #include "tda10048.h" #include "dvb-pll.h" #include "tuner-xc2028.h" -#include "tuner-xc2028-types.h" #include "tuner-simple.h" static unsigned int debug; @@ -321,7 +320,7 @@ static int dvb_register(struct cx23885_tsport *port) static struct xc2028_ctrl ctl = { .fname = "xc3028-v27.fw", .max_len = 64, - .scode_table = OREN538, + .scode_table = XC3028_FE_OREN538, }; fe = dvb_attach(xc2028_attach, |