commit 2bb74d4c3a87beb16808fc1ca4833fc903e8f9f2
parent 32d26b5859263127653e62b86b006fbd62187e35
Author: alex <alex@022568fa-442e-4ef8-a3e8-54dcafdb011a>
Date: Sat, 12 Jan 2008 22:20:43 +0000
* Bump version to 0.10.2 for release.
* Uncomment V4L2 control query ioctl.
git-svn-id: http://svn.mediati.org/svn/r5u870/trunk@30 022568fa-442e-4ef8-a3e8-54dcafdb011a
Diffstat:
5 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,6 @@
+version 0.10.2, 2008/1/13
+ Small minor bug fixes that were missed in the previous release.
+
Version 0.10.1, 2008/1/2
Add support for the 183a UVC camera.
diff --git a/README b/README
@@ -1,5 +1,5 @@
Ricoh R5U870 Linux Driver
-Version 0.10.1, 2008/1/2
+Version 0.10.2, 2008/1/13
Requirements
============
diff --git a/r5u870_md.c b/r5u870_md.c
@@ -3,8 +3,7 @@
* Copyright (C) 2007 Sam Revitch <samr7@cs.washington.edu>
* Copyright (c) 2008 Alexander Hixon <hixon.alexander@mediati.org>
*
- * Cheers to Utz-Uwe Haus for getting the Sony VGP-VCC7 firmware extracted,
- * and providing a patch against the r5u870 driver.
+ * Check out README for additional credits.
*
* This driver is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
diff --git a/usbcam.c b/usbcam.c
@@ -1,6 +1,6 @@
/*
* USBCAM abstraction library for USB webcam drivers
- * Version 0.1.1
+ * Version 0.10.2
*
* Copyright (C) 2007 Sam Revitch <samr7@cs.washington.edu>
* Copyright (c) 2008 Alexander Hixon <hixon.alexander@mediati.org>
@@ -1812,7 +1812,6 @@ static int usbcam_v4l_int_ioctl(struct inode *inodep, struct file *filp,
}
/* DEFAULT CONTROL HANDLING - USE MINIDRIVER ARRAY / CALLOUTS */
-#if 0
case VIDIOC_QUERYCTRL: {
struct v4l2_queryctrl *a = (struct v4l2_queryctrl *) arg;
const struct usbcam_ctrl *ctrlp, *resp;
@@ -1903,7 +1902,6 @@ static int usbcam_v4l_int_ioctl(struct inode *inodep, struct file *filp,
usbcam_work_maybe_stop(udp);
return res;
}
-#endif
case VIDIOC_G_CTRL: {
struct v4l2_control *a = (struct v4l2_control *) arg;
diff --git a/usbcam.h b/usbcam.h
@@ -1,6 +1,6 @@
/*
* USBCAM abstraction library for USB webcam drivers
- * Version 0.1.1
+ * Version 0.10.2
*
* Copyright (C) 2007 Sam Revitch <samr7@cs.washington.edu>
*