summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodor Tomov <ttomov@mm-sol.com>2011-01-25 17:46:44 +0200
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>2011-02-07 15:37:55 +0100
commit1305b42c68587e5e96b662bc8694a3f821e51e0d (patch)
treef97586bfe452a493c0f7af9ce63b0a9fb717cdb1
parent6f30903cd6aeda5d61b3fa2a0e2e11e7bfb50c1e (diff)
Add v4l2_subdev_open() and v4l2_subdev_close() to subdev.h
Add v4l2_subdev_close() function and declare both in subdev.h. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Todor Tomov <ttomov@mm-sol.com>
-rw-r--r--subdev.c7
-rw-r--r--subdev.h3
2 files changed, 9 insertions, 1 deletions
diff --git a/subdev.c b/subdev.c
index b324d4e..3a8e82a 100644
--- a/subdev.c
+++ b/subdev.c
@@ -33,7 +33,7 @@
#include "subdev.h"
#include "tools.h"
-static int v4l2_subdev_open(struct media_entity *entity)
+int v4l2_subdev_open(struct media_entity *entity)
{
if (entity->fd != -1)
return 0;
@@ -48,6 +48,11 @@ static int v4l2_subdev_open(struct media_entity *entity)
return 0;
}
+void v4l2_subdev_close(struct media_entity *entity)
+{
+ close(entity->fd);
+}
+
int v4l2_subdev_get_format(struct media_entity *entity,
struct v4l2_mbus_framefmt *format, unsigned int pad,
enum v4l2_subdev_format_whence which)
diff --git a/subdev.h b/subdev.h
index 7c1733d..976d066 100644
--- a/subdev.h
+++ b/subdev.h
@@ -24,6 +24,9 @@
struct media_entity;
+int v4l2_subdev_open(struct media_entity *entity);
+
+void v4l2_subdev_close(struct media_entity *entity);
int v4l2_subdev_get_format(struct media_entity *entity,
struct v4l2_mbus_framefmt *format, unsigned int pad,