diff options
author | Antti Palosaari <crope@iki.fi> | 2014-07-17 21:15:11 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-07-21 20:59:39 -0300 |
commit | eb83eab7fec5a5137e95717188e57310a0ebc051 (patch) | |
tree | 99137413567d3b6ac6dd520100b638116c89421e | |
parent | b4bb1c285f14e8ddafe4ed5fdec477e3a02de708 (diff) |
[media] airspy: remove v4l2-compliance workaround
v4l2-compliance is now happy with frequency ranges where both lower
and upper limit is same.
Cc: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | drivers/staging/media/airspy/airspy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/media/airspy/airspy.c b/drivers/staging/media/airspy/airspy.c index 91857e738ba1..255fe6a5b4e7 100644 --- a/drivers/staging/media/airspy/airspy.c +++ b/drivers/staging/media/airspy/airspy.c @@ -62,7 +62,7 @@ static const struct v4l2_frequency_band bands[] = { .index = 0, .capability = V4L2_TUNER_CAP_1HZ | V4L2_TUNER_CAP_FREQ_BANDS, .rangelow = 20000000, - .rangehigh = 20000001, /* FIXME: make v4l2-compliance happy */ + .rangehigh = 20000000, }, }; |