The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH 5/5] Small cleanup
@ 2005-05-26 20:35 Manu Abraham
  0 siblings, 0 replies; only message in thread
From: Manu Abraham @ 2005-05-26 20:35 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Johannes Stezenbach, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 157 bytes --]

o Miscellaneous cleanup

Signed-off-by: Manu Abraham <manu@kromtek.com>

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




[-- Attachment #2: small-cleanups.diff --]
[-- Type: text/x-patch, Size: 1218 bytes --]

--- 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;




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-05-26 20:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-26 20:35 [PATCH 5/5] Small cleanup Manu Abraham

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox