Commit ea21f702 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] cx231xx: just return 0 instead of using a var

Instead of allocating a var to store 0 and just return it,
change the code to return 0 directly.
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 2f00fce4
...@@ -403,8 +403,6 @@ static int attach_xc5000(u8 addr, struct cx231xx *dev) ...@@ -403,8 +403,6 @@ static int attach_xc5000(u8 addr, struct cx231xx *dev)
int cx231xx_set_analog_freq(struct cx231xx *dev, u32 freq) int cx231xx_set_analog_freq(struct cx231xx *dev, u32 freq)
{ {
int status = 0;
if ((dev->dvb != NULL) && (dev->dvb->frontend != NULL)) { if ((dev->dvb != NULL) && (dev->dvb->frontend != NULL)) {
struct dvb_tuner_ops *dops = &dev->dvb->frontend->ops.tuner_ops; struct dvb_tuner_ops *dops = &dev->dvb->frontend->ops.tuner_ops;
...@@ -423,7 +421,7 @@ int cx231xx_set_analog_freq(struct cx231xx *dev, u32 freq) ...@@ -423,7 +421,7 @@ int cx231xx_set_analog_freq(struct cx231xx *dev, u32 freq)
} }
return status; return 0;
} }
int cx231xx_reset_analog_tuner(struct cx231xx *dev) int cx231xx_reset_analog_tuner(struct cx231xx *dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment