diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2010-05-31 04:33:06 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-03-21 19:32:42 -0400 |
commit | 0070d91e5b5ae594116202ab7d62d8264830b1cd (patch) | |
tree | ef29e29a06285996136aa91198e133b3d6ede481 /include/media | |
parent | fc0a80798576f80ca10b3f6c9c7097f12fd1d64e (diff) |
[media] v4l: subdev: Don't require core operations
There's no reason to require subdevices to implement the core
operations. Remove the check for non-NULL core operations when
initializing the subdev.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/v4l2-subdev.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index d4d74f9f2ff2..da16d2f4a00b 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h | |||
@@ -481,8 +481,7 @@ static inline void v4l2_subdev_init(struct v4l2_subdev *sd, | |||
481 | const struct v4l2_subdev_ops *ops) | 481 | const struct v4l2_subdev_ops *ops) |
482 | { | 482 | { |
483 | INIT_LIST_HEAD(&sd->list); | 483 | INIT_LIST_HEAD(&sd->list); |
484 | /* ops->core MUST be set */ | 484 | BUG_ON(!ops); |
485 | BUG_ON(!ops || !ops->core); | ||
486 | sd->ops = ops; | 485 | sd->ops = ops; |
487 | sd->v4l2_dev = NULL; | 486 | sd->v4l2_dev = NULL; |
488 | sd->flags = 0; | 487 | sd->flags = 0; |