camsys_drv: v0.0x14.0

This commit is contained in:
ddl
2014-09-17 11:26:57 +08:00
parent 855685ab74
commit 7deb93127e
2 changed files with 4 additions and 2 deletions

View File

@@ -167,7 +167,7 @@ static int camsys_extdev_register(camsys_devio_name_t *devio, camsys_dev_t *cams
extdev = camsys_find_extdev(devio->dev_id, camsys_dev);
if (extdev != NULL) {
err = -EINVAL; /* ddl@rock-chips.com: v0.0x13.0 */
err = -EBUSY; /* ddl@rock-chips.com: v0.0x13.0 */
camsys_warn("Extdev(dev_id: 0x%x) has been registered in %s!",
devio->dev_id, dev_name(camsys_dev->miscdev.this_device));
goto end;

View File

@@ -95,8 +95,10 @@
*v0.0x13.0:
1) camsys_extdev_register return failed when this dev_id has been registered;
2) add support JPG irq connect;
*v0.0x14.0:
1) camsys_extdev_register return -EBUSY when this dev_id has been registered;
*/
#define CAMSYS_DRIVER_VERSION KERNEL_VERSION(0,0x13,0)
#define CAMSYS_DRIVER_VERSION KERNEL_VERSION(0,0x14,0)
#define CAMSYS_PLATFORM_DRV_NAME "RockChip-CamSys"