diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-15 09:35:58 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 17:56:03 -0300 |
commit | ab12f41f62ee8824bb2eec12c8dcbfb31dd4572a (patch) | |
tree | 6d18a5012ddc4ffebe6e1ffb50233f3ae7f21e3f /drivers/media/dvb | |
parent | 320ed23ebf135a3403a7068ede7ca7915675bd47 (diff) |
[media] drxk: Remove goto/break after return
After return, we don't need any other statement to change the
function flux ;)
Reported-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r-- | drivers/media/dvb/frontends/drxk_hard.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/media/dvb/frontends/drxk_hard.c b/drivers/media/dvb/frontends/drxk_hard.c index 217796dd49b..56949553b92 100644 --- a/drivers/media/dvb/frontends/drxk_hard.c +++ b/drivers/media/dvb/frontends/drxk_hard.c @@ -1667,7 +1667,6 @@ static int CtrlPowerMode(struct drxk_state *state, enum DRXPowerMode *mode) default: /* Unknow sleep mode */ return -EINVAL; - break; } /* If already in requested power mode, do nothing */ @@ -3460,7 +3459,6 @@ static int DVBTCtrlSetEchoThreshold(struct drxk_state *state, break; default: return -EINVAL; - goto error; } status = write16(state, OFDM_SC_RA_RAM_ECHO_THRES__A, data); |