Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29853
b: refs/heads/master
c: 8c99024
h: refs/heads/master
i:
  29851: 03f38b3
v: v3
  • Loading branch information
Michael Krufky authored and Mauro Carvalho Chehab committed Jun 25, 2006
1 parent d1a53be commit 27198a2
Show file tree
Hide file tree
Showing 3 changed files with 12 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: 20fe4f6599ed300ebd5ef5ef20545a1297c094fa
refs/heads/master: 8c99024b88b5da3a73f0575dad98527c9a278d1b
10 changes: 10 additions & 0 deletions trunk/drivers/media/dvb/bt8xx/dvb-bt8xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,11 @@ static struct mt352_config thomson_dtt7579_config = {
.pll_set = thomson_dtt7579_pll_set,
};

static struct zl10353_config thomson_dtt7579_zl10353_config = {
.demod_address = 0x0f,
.pll_set = thomson_dtt7579_pll_set,
};

static int cx24108_pll_set(struct dvb_frontend* fe, struct dvb_frontend_parameters* params)
{
u32 freq = params->frequency;
Expand Down Expand Up @@ -617,6 +622,11 @@ static void frontend_init(struct dvb_bt8xx_card *card, u32 type)
switch(type) {
case BTTV_BOARD_DVICO_DVBT_LITE:
card->fe = mt352_attach(&thomson_dtt7579_config, card->i2c_adapter);

if (card->fe == NULL)
card->fe = zl10353_attach(&thomson_dtt7579_zl10353_config,
card->i2c_adapter);

if (card->fe != NULL) {
card->fe->ops->info.frequency_min = 174000000;
card->fe->ops->info.frequency_max = 862000000;
Expand Down
1 change: 1 addition & 0 deletions trunk/drivers/media/dvb/bt8xx/dvb-bt8xx.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#include "cx24110.h"
#include "or51211.h"
#include "lgdt330x.h"
#include "zl10353.h"

struct dvb_bt8xx_card {
struct mutex lock;
Expand Down

0 comments on commit 27198a2

Please sign in to comment.