aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/radio
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-04-28 12:32:25 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-04-30 13:40:05 -0300
commitd202e1bab3c3b61dd562360e5c73e9df7d2cfe09 (patch)
tree4044b0a034e969ca5a98c04d1cc6593abe912d25 /drivers/media/radio
parent[media] ir-sony-decoder: shutup smatch warnings (diff)
downloadlinux-dev-d202e1bab3c3b61dd562360e5c73e9df7d2cfe09.tar.xz
linux-dev-d202e1bab3c3b61dd562360e5c73e9df7d2cfe09.zip
[media] wl128x: fix int type for streg_cbdata
The streg_cbdata can have a negative error value. So, it should be an integer, and not u8, as reported by smatch: drivers/media/radio/wl128x/fmdrv_common.c:1517 fmc_prepare() warn: assigning (-115) to unsigned variable 'fmdev->streg_cbdata' Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/radio')
-rw-r--r--drivers/media/radio/wl128x/fmdrv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/radio/wl128x/fmdrv.h b/drivers/media/radio/wl128x/fmdrv.h
index a587c9bac930..dd203de5de95 100644
--- a/drivers/media/radio/wl128x/fmdrv.h
+++ b/drivers/media/radio/wl128x/fmdrv.h
@@ -210,7 +210,7 @@ struct fmdev {
spinlock_t resp_skb_lock; /* To protect access to received SKB */
long flag; /* FM driver state machine info */
- u8 streg_cbdata; /* status of ST registration */
+ int streg_cbdata; /* status of ST registration */
struct sk_buff_head rx_q; /* RX queue */
struct tasklet_struct rx_task; /* RX Tasklet */