diff options
author | Mike Isely <isely@pobox.com> | 2009-05-01 22:04:35 -0500 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2009-05-01 22:04:35 -0500 |
commit | 2a1a9acb2d85130c9e1b9f7dc7812e8846142bcc (patch) | |
tree | bfb4bc19a4698d50a3452856928fcd0b94ce104e | |
parent | 961b6d8d20c76a4c210516ce2c9baa4df6d43527 (diff) | |
download | mediapointer-dvb-s2-2a1a9acb2d85130c9e1b9f7dc7812e8846142bcc.tar.gz mediapointer-dvb-s2-2a1a9acb2d85130c9e1b9f7dc7812e8846142bcc.tar.bz2 |
pvrusb2: Bump up version advertised through v4l interface
From: Mike Isely <isely@pobox.com>
Kick up the pvrusb2 version number advertised through the v4l
interface. This value really has almost no meaning because I don't
make a serious attempt to version the driver in this manner (otherwise
this one line becomes a nasty hotspot of changes and merge
conflicts). The value that is here is really a historical thing.
However Hans Verkuil thought it might be a good idea to bump up the
number anyway right now since the driver's mechanism for communicating
with the v4l core has pretty much completely changed. Sending out a
different version number can be useful for later debugging in case a
problem arises.
Priority: normal
Signed-off-by: Mike Isely <isely@pobox.com>
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-v4l2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-v4l2.c b/linux/drivers/media/video/pvrusb2/pvrusb2-v4l2.c index c7fc605f8..adccf1cc8 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-v4l2.c +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-v4l2.c @@ -91,7 +91,7 @@ static struct v4l2_capability pvr_capability ={ .driver = "pvrusb2", .card = "Hauppauge WinTV pvr-usb2", .bus_info = "usb", - .version = KERNEL_VERSION(0,8,0), + .version = KERNEL_VERSION(0, 9, 0), .capabilities = (V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_TUNER | V4L2_CAP_AUDIO | V4L2_CAP_RADIO | V4L2_CAP_READWRITE), |