diff options
author | Douglas Schilling Landgraf <dougsland@linuxtv.org> | 2008-09-30 01:46:41 -0400 |
---|---|---|
committer | Douglas Schilling Landgraf <dougsland@linuxtv.org> | 2008-09-30 01:46:41 -0400 |
commit | 0bde6f869cdcf61aec023543219643c10f59e23a (patch) | |
tree | bbe50e728ebd058508eaf89f29e886d19b269a63 /linux/drivers/media/video/em28xx/em28xx-dvb.c | |
parent | b7d150678426686774ff4ee8365061eeefe7f021 (diff) | |
download | mediapointer-dvb-s2-0bde6f869cdcf61aec023543219643c10f59e23a.tar.gz mediapointer-dvb-s2-0bde6f869cdcf61aec023543219643c10f59e23a.tar.bz2 |
em28xx: Add detection for K-WORLD DVB-T 310U
From: Darron Broad <darron@kewl.org>
Correct firmware type to MTS
Correct audio routing for composite/s-video
Add DVB-T detection.
This patch uses the eeprom hash method for detection as the vendor/product
ids are also used for the DIGIVOX_AD. This may be a clone of the same
product. Explanatory text has been added prior to the hask look-up in
anticipation that it may help others.
The following has been tested to work:
Analogue TV (PAL-I)
Composite In
DVB-T (UK Crystal Palace)
USB AUDIO
The following has not been tested but probably works:
S-Video In
Priority: high
Signed-off-by: Darron Broad <darron@kewl.org>
Signed-off-by: Douglas Schilling Landgraf <dougsland@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/em28xx/em28xx-dvb.c')
-rw-r--r-- | linux/drivers/media/video/em28xx/em28xx-dvb.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux/drivers/media/video/em28xx/em28xx-dvb.c b/linux/drivers/media/video/em28xx/em28xx-dvb.c index 03c212e5a..b98749b8d 100644 --- a/linux/drivers/media/video/em28xx/em28xx-dvb.c +++ b/linux/drivers/media/video/em28xx/em28xx-dvb.c @@ -452,6 +452,15 @@ static int dvb_init(struct em28xx *dev) goto out_free; } break; + case EM2880_BOARD_KWORLD_DVB_310U: + dvb->frontend = dvb_attach(zl10353_attach, + &em28xx_zl10353_with_xc3028, + &dev->i2c_adap); + if (attach_xc3028(0x61, dev) < 0) { + result = -EINVAL; + goto out_free; + } + break; default: printk(KERN_ERR "%s/2: The frontend of your DVB/ATSC card" " isn't supported yet\n", |