[PATCH 5/5] Small cleanup

From: Manu Abraham
Date: Thu May 26 2005 - 15:50:16 EST


o Miscellaneous cleanup

Signed-off-by: Manu Abraham <manu@xxxxxxxxxxx>

dst.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)



--- linux-2.6.12-rc5.orig/drivers/media/dvb/bt8xx/dst.c 2005-05-26 11:16:20.000000000 +0400
+++ linux-2.6.12-rc5/drivers/media/dvb/bt8xx/dst.c 2005-05-26 15:05:37.000000000 +0400
@@ -1041,7 +1041,7 @@ static int dst_set_diseqc(struct dvb_fro
struct dst_state* state = fe->demodulator_priv;
u8 paket[8] = { 0x00, 0x08, 0x04, 0xe0, 0x10, 0x38, 0xf0, 0xec };

- if (state->dst_type == DST_TYPE_IS_TERR)
+ if (state->dst_type != DST_TYPE_IS_SAT)
return 0;

if (cmd->msg_len == 0 || cmd->msg_len > 4)
@@ -1059,7 +1059,7 @@ static int dst_set_voltage(struct dvb_fr

state->voltage = voltage;

- if (state->dst_type == DST_TYPE_IS_TERR)
+ if (state->dst_type != DST_TYPE_IS_SAT)
return 0;

need_cmd = 0;
@@ -1093,7 +1093,7 @@ static int dst_set_tone(struct dvb_front

state->tone = tone;

- if (state->dst_type == DST_TYPE_IS_TERR)
+ if (state->dst_type != DST_TYPE_IS_SAT)
return 0;

switch (tone) {
@@ -1117,7 +1117,7 @@ static int dst_send_burst(struct dvb_fro
{
struct dst_state *state = fe->demodulator_priv;

- if ((state->dst_type == DST_TYPE_IS_TERR) || (state->dst_type == DST_TYPE_IS_CABLE))
+ if (state->dst_type != DST_TYPE_IS_SAT)
return 0;

state->minicmd = minicmd;