Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 124049
b: refs/heads/master
c: b48e2de
h: refs/heads/master
i:
  124047: 9926ae8
v: v3
  • Loading branch information
Manu Abraham authored and Mauro Carvalho Chehab committed Dec 29, 2008
1 parent 3edabf9 commit 4d29f32
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ecdec311806220d6e88e3ac52936cc30e1580810
refs/heads/master: b48e2de3b2b05fd360a07704eb39bf44298c74d0
4 changes: 3 additions & 1 deletion trunk/drivers/media/dvb/frontends/stb0899_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1886,17 +1886,19 @@ static struct dvb_frontend_ops stb0899_ops = {
struct dvb_frontend *stb0899_attach(struct stb0899_config *config, struct i2c_adapter *i2c)
{
struct stb0899_state *state = NULL;
enum stb0899_inversion inversion;

state = kzalloc(sizeof (struct stb0899_state), GFP_KERNEL);
if (state == NULL)
goto error;

inversion = config->inversion;
state->verbose = verbose;
state->config = config;
state->i2c = i2c;
state->frontend.ops = stb0899_ops;
state->frontend.demodulator_priv = state;
state->internal.inversion = IQ_SWAP_AUTO;
state->internal.inversion = inversion;

stb0899_wakeup(&state->frontend);
if (stb0899_get_dev_id(state) == -ENODEV) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/media/dvb/ttpci/budget-ci.c
Original file line number Diff line number Diff line change
Expand Up @@ -1658,7 +1658,7 @@ static struct stb0899_config tt3200_config = {
.demod_address = 0x68,

.xtal_freq = 27000000,
.inversion = IQ_SWAP_ON, /* 1 */
.inversion = IQ_SWAP_OFF, /* 1 */

.esno_ave = TT3200_DVBS2_ESNO_AVE,
.esno_quant = TT3200_DVBS2_ESNO_QUANT,
Expand Down

0 comments on commit 4d29f32

Please sign in to comment.