Skip to content

Commit

Permalink
[media] v4l: subdev: Don't require core operations
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Laurent Pinchart authored and Mauro Carvalho Chehab committed Mar 21, 2011
1 parent fc0a807 commit 0070d91
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions include/media/v4l2-subdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,7 @@ static inline void v4l2_subdev_init(struct v4l2_subdev *sd,
const struct v4l2_subdev_ops *ops)
{
INIT_LIST_HEAD(&sd->list);
/* ops->core MUST be set */
BUG_ON(!ops || !ops->core);
BUG_ON(!ops);
sd->ops = ops;
sd->v4l2_dev = NULL;
sd->flags = 0;
Expand Down

0 comments on commit 0070d91

Please sign in to comment.