[media] dib8000: upd_demod_gain_period should be u32
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>
Tue, 23 Dec 2014 14:21:12 +0000 (11:21 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Mon, 2 Feb 2015 15:21:25 +0000 (13:21 -0200)
commit901c4ad64c53f4d29d7bd96f33d1d5aae55ad8d8
tree11595c1c1b1ec8a9e1d8efca9ae3c84a2c145428
parent2b0aac3011bc7a9db27791bed4978554263ef079
[media] dib8000: upd_demod_gain_period should be u32

X-Patchwork-Delegate: m.chehab@samsung.com
As shown at the code, upd_demod_gain_period is used to write
to two 16-bit registers:
    dib8000_write_word(state, 1946, upd_demod_gain_period & 0xFFFF);
    dib8000_write_word(state, 1947, reg | (1<<14) | ((upd_demod_gain_period >> 16) & 0xFF));

So, it should be declared as u32.

This fixes the following smatch warning:
drivers/media/dvb-frontends/dib8000.c:1282 dib8000_agc_startup() warn: right shifting more than type allows

Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/dvb-frontends/dib8000.c