projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f2747cf
)
[media] mt2060: just return 0 instead of using a var
author
Mauro Carvalho Chehab
<m.chehab@samsung.com>
Wed, 3 Sep 2014 19:06:55 +0000
(16:06 -0300)
committer
Mauro Carvalho Chehab
<m.chehab@samsung.com>
Wed, 3 Sep 2014 20:59:56 +0000
(17:59 -0300)
Instead of allocating a var to store 0 and just return it,
change the code to return 0 directly.
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
drivers/media/tuners/mt2060.c
patch
|
blob
|
history
diff --git
a/drivers/media/tuners/mt2060.c
b/drivers/media/tuners/mt2060.c
index 13381de58a843a4b8f4997705bdfc62c40ae34f5..b87b2549d58d6eab5b202dca2abb8645a04a6141 100644
(file)
--- a/
drivers/media/tuners/mt2060.c
+++ b/
drivers/media/tuners/mt2060.c
@@
-157,7
+157,6
@@
static int mt2060_set_params(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c = &fe->dtv_property_cache;
struct mt2060_priv *priv;
- int ret=0;
int i=0;
u32 freq;
u8 lnaband;
@@
-240,7
+239,7
@@
static int mt2060_set_params(struct dvb_frontend *fe)
if (fe->ops.i2c_gate_ctrl)
fe->ops.i2c_gate_ctrl(fe, 0); /* close i2c_gate */
- return
ret
;
+ return
0
;
}
static void mt2060_calibrate(struct mt2060_priv *priv)