diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2015-05-22 04:39:54 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2015-05-30 11:20:09 -0300 |
commit | 1ba90492289003e7939574eca8b1ff6cce2d5520 (patch) | |
tree | 3c1e04b46eb833081b109c7af0fc7672c141ef45 /drivers/media/tuners | |
parent | 40c942a1746ffcb632933a2195fa80e6f4c2d6f0 (diff) | |
download | linux-1ba90492289003e7939574eca8b1ff6cce2d5520.tar.gz linux-1ba90492289003e7939574eca8b1ff6cce2d5520.tar.bz2 linux-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.c | 2 |
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, }, }; |