Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: dvb-frontends/stv6111: cosmetics: comments fixup, misc

Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

authored by

Daniel Scheller and committed by
Mauro Carvalho Chehab
85e36b47 2af07a49

+15 -15
+15 -15
drivers/media/dvb-frontends/stv6111.c
··· 42 42 }; 43 43 44 44 static struct slookup lnagain_nf_lookup[] = { 45 - /*Gain *100dB*/ /*Reg*/ 45 + /* Gain *100dB // Reg */ 46 46 { 2572, 0 }, 47 47 { 2575, 1 }, 48 48 { 2580, 2 }, ··· 78 78 }; 79 79 80 80 static struct slookup lnagain_iip3_lookup[] = { 81 - /*Gain *100dB*/ /*reg*/ 81 + /* Gain *100dB // reg */ 82 82 { 1548, 0 }, 83 83 { 1552, 1 }, 84 84 { 1569, 2 }, ··· 114 114 }; 115 115 116 116 static struct slookup gain_rfagc_lookup[] = { 117 - /*Gain *100dB*/ /*reg*/ 117 + /* Gain *100dB // reg */ 118 118 { 4870, 0x3000 }, 119 119 { 4850, 0x3C00 }, 120 120 { 4800, 0x4500 }, ··· 174 174 * a different BB_MAG setting) 175 175 */ 176 176 static struct slookup gain_channel_agc_nf_lookup[] = { 177 - /*Gain *100dB*/ /*reg*/ 177 + /* Gain *100dB // reg */ 178 178 { 7082, 0x3000 }, 179 179 { 7052, 0x4000 }, 180 180 { 7007, 0x4600 }, ··· 233 233 }; 234 234 235 235 static struct slookup gain_channel_agc_iip3_lookup[] = { 236 - /*Gain *100dB*/ /*reg*/ 236 + /* Gain *100dB // reg */ 237 237 { 7070, 0x3000 }, 238 238 { 7028, 0x4000 }, 239 239 { 7019, 0x4600 }, ··· 483 483 else 484 484 icp = 7; 485 485 486 - state->reg[0x02] |= 0x80; /* LNA IIP3 Mode */ 486 + state->reg[0x02] |= 0x80; /* LNA IIP3 Mode */ 487 487 488 488 state->reg[0x03] = (state->reg[0x03] & ~0x80) | (psel << 7); 489 489 state->reg[0x04] = (div & 0xFF); ··· 503 503 504 504 read_reg(state, 0x03, &tmp); 505 505 if (tmp & 0x10) { 506 - state->reg[0x02] &= ~0x80; /* LNA NF Mode */ 506 + state->reg[0x02] &= ~0x80; /* LNA NF Mode */ 507 507 write_regs(state, 2, 1); 508 508 } 509 509 read_reg(state, 0x08, &tmp); ··· 636 636 637 637 static struct dvb_tuner_ops tuner_ops = { 638 638 .info = { 639 - .name = "STV6111", 640 - .frequency_min = 950000, 641 - .frequency_max = 2150000, 642 - .frequency_step = 0 639 + .name = "STV6111", 640 + .frequency_min = 950000, 641 + .frequency_max = 2150000, 642 + .frequency_step = 0 643 643 }, 644 - .set_params = set_params, 645 - .release = release, 646 - .get_rf_strength = get_rf_strength, 647 - .set_bandwidth = set_bandwidth, 644 + .set_params = set_params, 645 + .release = release, 646 + .get_rf_strength = get_rf_strength, 647 + .set_bandwidth = set_bandwidth, 648 648 }; 649 649 650 650 struct dvb_frontend *stv6111_attach(struct dvb_frontend *fe,