This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/cgit.cgi/media_tree.git tree:

Subject: [media] dib0090: Remove a dead code
Author:  Mauro Carvalho Chehab <[email protected]>
Date:    Fri Jun 5 08:27:18 2015 -0300

As reported by smatch:
        drivers/media/dvb-frontends/dib0090.c:1710 
dib0090_dc_offset_calibration() warn: missing break? reassigning '*tune_state'

There's no need to change tune_state there, as the fall though code
will change it again to another state. So, simplify it by
removing the dead code.

While here, fix a typo:
        Sart => Start

Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/dvb-frontends/dib0090.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

---

http://git.linuxtv.org/cgit.cgi/media_tree.git/commit/?id=91aff0c5d90fe57b81e2295437affc34d205a2d2

diff --git a/drivers/media/dvb-frontends/dib0090.c 
b/drivers/media/dvb-frontends/dib0090.c
index 68e2af2..47cb722 100644
--- a/drivers/media/dvb-frontends/dib0090.c
+++ b/drivers/media/dvb-frontends/dib0090.c
@@ -1696,12 +1696,10 @@ static int dib0090_dc_offset_calibration(struct 
dib0090_state *state, enum front
 
                if (state->identity.p1g)
                        state->dc = dc_p1g_table;
-               *tune_state = CT_TUNER_STEP_0;
 
                /* fall through */
-
        case CT_TUNER_STEP_0:
-               dprintk("Sart/continue DC calibration for %s path", 
(state->dc->i == 1) ? "I" : "Q");
+               dprintk("Start/continue DC calibration for %s path", 
(state->dc->i == 1) ? "I" : "Q");
                dib0090_write_reg(state, 0x01, state->dc->bb1);
                dib0090_write_reg(state, 0x07, state->bb7 | (state->dc->i << 
7));
 

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to