Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8136
b: refs/heads/master
c: f612c57
h: refs/heads/master
v: v3
  • Loading branch information
Manu Abraham authored and Linus Torvalds committed Sep 9, 2005
1 parent c08517a commit a1ddec8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 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: f30db067a593aeb3fdd97ec0a3e6399ea566f2ad
refs/heads/master: f612c5793449ac653b2f4531696d8e74e771e3d3
28 changes: 14 additions & 14 deletions trunk/drivers/media/dvb/bt8xx/dst.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,12 +324,12 @@ static int dst_set_polarization(struct dst_state *state)
{
switch (state->voltage) {
case SEC_VOLTAGE_13: // vertical
printk("%s: Polarization=[Vertical]\n", __FUNCTION__);
dprintk("%s: Polarization=[Vertical]\n", __FUNCTION__);
state->tx_tuna[8] &= ~0x40; //1
break;

case SEC_VOLTAGE_18: // horizontal
printk("%s: Polarization=[Horizontal]\n", __FUNCTION__);
dprintk("%s: Polarization=[Horizontal]\n", __FUNCTION__);
state->tx_tuna[8] |= 0x40; // 0
break;

Expand All @@ -344,7 +344,7 @@ static int dst_set_polarization(struct dst_state *state)
static int dst_set_freq(struct dst_state *state, u32 freq)
{
state->frequency = freq;
if (debug > 4)
if (verbose > 4)
dprintk("%s: set Frequency %u\n", __FUNCTION__, freq);

if (state->dst_type == DST_TYPE_IS_SAT) {
Expand Down Expand Up @@ -451,7 +451,6 @@ static fe_code_rate_t dst_get_fec(struct dst_state* state)

static int dst_set_symbolrate(struct dst_state* state, u32 srate)
{
u8 *val;
u32 symcalc;
u64 sval;

Expand All @@ -463,7 +462,6 @@ static int dst_set_symbolrate(struct dst_state* state, u32 srate)
if (debug > 4)
dprintk("%s: set symrate %u\n", __FUNCTION__, srate);
srate /= 1000;
val = &state->tx_tuna[0];

if (state->type_flags & DST_TYPE_HAS_SYMDIV) {
sval = srate;
Expand All @@ -474,17 +472,19 @@ static int dst_set_symbolrate(struct dst_state* state, u32 srate)
if (debug > 4)
dprintk("%s: set symcalc %u\n", __FUNCTION__, symcalc);

val[5] = (u8) (symcalc >> 12);
val[6] = (u8) (symcalc >> 4);
val[7] = (u8) (symcalc << 4);
state->tx_tuna[5] = (u8) (symcalc >> 12);
state->tx_tuna[6] = (u8) (symcalc >> 4);
state->tx_tuna[7] = (u8) (symcalc << 4);
} else {
val[5] = (u8) (srate >> 16) & 0x7f;
val[6] = (u8) (srate >> 8);
val[7] = (u8) srate;
state->tx_tuna[5] = (u8) (srate >> 16) & 0x7f;
state->tx_tuna[6] = (u8) (srate >> 8);
state->tx_tuna[7] = (u8) srate;
}
state->tx_tuna[8] &= ~0x20;
if (state->type_flags & DST_TYPE_HAS_OBS_REGS) {
if (srate > 8000)
state->tx_tuna[8] |= 0x20;
}
val[8] &= ~0x20;
if (srate > 8000)
val[8] |= 0x20;
return 0;
}

Expand Down

0 comments on commit a1ddec8

Please sign in to comment.