diff options
author | Mauro Carvalho Chehab <devnull@localhost> | 2005-12-08 13:56:00 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <devnull@localhost> | 2005-12-08 13:56:00 +0000 |
commit | 6e74e7af21deee1b7b291cb8917b07ad505e6d3c (patch) | |
tree | 7a520b248a054c707732dc21376e91926a1c57a3 /linux/drivers/media/dvb/frontends/lgdt330x.c | |
parent | d53d1fc828c43cbadb8eb5df628bba99fb1c2fee (diff) | |
download | mediapointer-dvb-s2-6e74e7af21deee1b7b291cb8917b07ad505e6d3c.tar.gz mediapointer-dvb-s2-6e74e7af21deee1b7b291cb8917b07ad505e6d3c.tar.bz2 |
keep #if 0 for existent code when genreating kernel patches
kernel-sync
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/lgdt330x.c')
-rw-r--r-- | linux/drivers/media/dvb/frontends/lgdt330x.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/frontends/lgdt330x.c b/linux/drivers/media/dvb/frontends/lgdt330x.c index b77357c59..a36cbbd0f 100644 --- a/linux/drivers/media/dvb/frontends/lgdt330x.c +++ b/linux/drivers/media/dvb/frontends/lgdt330x.c @@ -446,7 +446,7 @@ static int lgdt3302_read_status(struct dvb_frontend* fe, fe_status_t* status) i2c_read_demod_bytes(state, TOP_CONTROL, buf, sizeof(buf)); dprintk("%s: TOP_CONTROL = 0x%02x, IRO_MASK = 0x%02x, IRQ_STATUS = 0x%02x\n", __FUNCTION__, buf[0], buf[1], buf[2]); -#if 0 +#if 0 /* keep */ /* Alternative method to check for a signal */ /* using the SNR good/bad interrupts. */ if ((buf[2] & 0x30) == 0x10) @@ -650,7 +650,7 @@ static int lgdt3302_read_snr(struct dvb_frontend* fe, u16* snr) i2c_read_demod_bytes(state, EQPH_ERR0, buf, sizeof(buf)); if (state->current_modulation == VSB_8) { -#if 0 +#if 0 /* keep */ /* Equalizer Mean-Square Error Register for VSB */ noise = ((buf[0] & 7) << 16) | (buf[1] << 8) | buf[2]; #else @@ -682,7 +682,7 @@ static int lgdt3303_read_snr(struct dvb_frontend* fe, u16* snr) if (state->current_modulation == VSB_8) { -#if 0 +#if 0 /* keep */ /* Equalizer Mean-Square Error Register for VSB */ noise = ((buf[0] & 0x78) << 13) | (buf[1] << 8) | buf[2]; #else |