diff options
Diffstat (limited to 'drivers/media/common/tuners/tda18271-common.c')
| -rw-r--r-- | drivers/media/common/tuners/tda18271-common.c | 11 | 
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/media/common/tuners/tda18271-common.c b/drivers/media/common/tuners/tda18271-common.c index 5466d47db89..aae40e52af5 100644 --- a/drivers/media/common/tuners/tda18271-common.c +++ b/drivers/media/common/tuners/tda18271-common.c @@ -533,16 +533,7 @@ int tda18271_calc_main_pll(struct dvb_frontend *fe, u32 freq)  	if (tda_fail(ret))  		goto fail; -	regs[R_MPD]   = (0x77 & pd); - -	switch (priv->mode) { -	case TDA18271_ANALOG: -		regs[R_MPD]  &= ~0x08; -		break; -	case TDA18271_DIGITAL: -		regs[R_MPD]  |=  0x08; -		break; -	} +	regs[R_MPD]   = (0x7f & pd);  	div =  ((d * (freq / 1000)) << 7) / 125;  |