aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/tuners
diff options
context:
space:
mode:
authorHans Verkuil <hans.verkuil@cisco.com>2015-05-22 04:39:54 -0300
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-05-30 11:20:09 -0300
commit1ba90492289003e7939574eca8b1ff6cce2d5520 (patch)
tree3c1e04b46eb833081b109c7af0fc7672c141ef45 /drivers/media/tuners
parent[media] cobalt: fix compiler warnings on 32 bit OSes (diff)
downloadlinux-dev-1ba90492289003e7939574eca8b1ff6cce2d5520.tar.xz
linux-dev-1ba90492289003e7939574eca8b1ff6cce2d5520.zip
[media] e4000: fix compiler warning
drivers/media/tuners/e4000.c:287:3: warning: this decimal constant is unsigned only in ISO C90 .rangehigh = 2208000000L, ^ Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Cc: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media/tuners')
-rw-r--r--drivers/media/tuners/e4000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/tuners/e4000.c b/drivers/media/tuners/e4000.c
index fdf07ce4177a..03538f88f488 100644
--- a/drivers/media/tuners/e4000.c
+++ b/drivers/media/tuners/e4000.c
@@ -284,7 +284,7 @@ static const struct v4l2_frequency_band bands[] = {
.index = 1,
.capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS,
.rangelow = 1249000000,
- .rangehigh = 2208000000L,
+ .rangehigh = 2208000000UL,
},
};