提交 1ba90492 编写于 作者: H Hans Verkuil 提交者: Mauro Carvalho Chehab

[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: NHans Verkuil <hans.verkuil@cisco.com>
Cc: Antti Palosaari <crope@iki.fi>
Signed-off-by: NMauro Carvalho Chehab <mchehab@osg.samsung.com>
上级 40c942a1
...@@ -284,7 +284,7 @@ static const struct v4l2_frequency_band bands[] = { ...@@ -284,7 +284,7 @@ static const struct v4l2_frequency_band bands[] = {
.index = 1, .index = 1,
.capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS, .capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS,
.rangelow = 1249000000, .rangelow = 1249000000,
.rangehigh = 2208000000L, .rangehigh = 2208000000UL,
}, },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册