diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-02-11 06:08:51 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-04-08 12:13:36 -0400 |
commit | 203577562449c1889caa3a321be572ed2b972ac9 (patch) | |
tree | c28a295fde855698cb07ecfa59822fbff0bbf0f2 /drivers/media/dvb-frontends/rtl2832.c | |
parent | 80ccf4ad06dc9d2f06a8347b2d309cdc959f72b3 (diff) |
[media] rtl2832: remove compiler warning
Cleaning up the following compiler warning:
rtl2832.c:703:12: warning: 'tmp' may be used uninitialized in this function
Even though it could never happen since if rtl2832_rd_demod_reg () doesn't set
tmp, this line would never run because we go to err. It is still nice to avoid
compiler warnings.
[mchehab@osg.samsung.com: fix a merge conflict with another patch meant
to fix the same bug, but doing it at the wrong way]
Signed-off-by: Luis de Bethencourt <luis.bg@samsung.com>
Reviewed-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/dvb-frontends/rtl2832.c')
-rw-r--r-- | drivers/media/dvb-frontends/rtl2832.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/rtl2832.c b/drivers/media/dvb-frontends/rtl2832.c index ad36d1cec1f3..20fa24566605 100644 --- a/drivers/media/dvb-frontends/rtl2832.c +++ b/drivers/media/dvb-frontends/rtl2832.c | |||
@@ -685,7 +685,7 @@ static int rtl2832_read_status(struct dvb_frontend *fe, fe_status_t *status) | |||
685 | struct rtl2832_dev *dev = fe->demodulator_priv; | 685 | struct rtl2832_dev *dev = fe->demodulator_priv; |
686 | struct i2c_client *client = dev->client; | 686 | struct i2c_client *client = dev->client; |
687 | int ret; | 687 | int ret; |
688 | u32 tmp = 0; | 688 | u32 uninitialized_var(tmp); |
689 | 689 | ||
690 | dev_dbg(&client->dev, "\n"); | 690 | dev_dbg(&client->dev, "\n"); |
691 | 691 | ||