Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 125536
b: refs/heads/master
c: 47aeba5
h: refs/heads/master
v: v3
  • Loading branch information
Dmitri Belimov authored and Mauro Carvalho Chehab committed Jan 2, 2009
1 parent 5e37b6a commit d002c52
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f204ae40ad79bbf50d85427a5cf39fcebdb4a993
refs/heads/master: 47aeba5addd88b178438ba9000600b9844ca0ee1
18 changes: 18 additions & 0 deletions trunk/drivers/media/video/saa7134/saa7134-dvb.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
#include "lnbp21.h"
#include "tuner-simple.h"

#include "zl10353.h"

MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
MODULE_LICENSE("GPL");

Expand Down Expand Up @@ -854,6 +856,12 @@ static struct tda1004x_config ads_tech_duo_config = {
.request_firmware = philips_tda1004x_request_firmware
};

static struct zl10353_config behold_h6_config = {
.demod_address = 0x1e>>1,
.no_tuner = 1,
.parallel_ts = 1,
};

/* ==================================================================
* tda10086 based DVB-S cards, helper functions
*/
Expand Down Expand Up @@ -1357,6 +1365,16 @@ static int dvb_init(struct saa7134_dev *dev)
&tda827x_cfg_0) < 0)
goto dettach_frontend;
break;
case SAA7134_BOARD_BEHOLD_H6:
dev->dvb.frontend = dvb_attach(zl10353_attach,
&behold_h6_config,
&dev->i2c_adap);
if (dev->dvb.frontend) {
dvb_attach(simple_tuner_attach, dev->dvb.frontend,
&dev->i2c_adap, 0x61,
TUNER_PHILIPS_FMD1216ME_MK3);
}
break;
default:
wprintk("Huh? unknown DVB card?\n");
break;
Expand Down

0 comments on commit d002c52

Please sign in to comment.