From patchwork Thu Nov 25 02:21:47 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 355262 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAP2MDTi021881 for ; Thu, 25 Nov 2010 02:22:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756058Ab0KYCVr (ORCPT ); Wed, 24 Nov 2010 21:21:47 -0500 Received: from perceval.ideasonboard.com ([95.142.166.194]:35108 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755974Ab0KYCVp (ORCPT ); Wed, 24 Nov 2010 21:21:45 -0500 Received: from localhost.localdomain (unknown [91.178.68.191]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 497AC35CA9; Thu, 25 Nov 2010 02:21:44 +0000 (UTC) From: Laurent Pinchart To: linux-media@vger.kernel.org Cc: sakari.ailus@maxwell.research.nokia.com Subject: [RFC/PATCH v4 2/7] v4l: subdev: Don't require core operations Date: Thu, 25 Nov 2010 03:21:47 +0100 Message-Id: <1290651712-14940-3-git-send-email-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 1.7.2.2 In-Reply-To: <1290651712-14940-1-git-send-email-laurent.pinchart@ideasonboard.com> References: <1290651712-14940-1-git-send-email-laurent.pinchart@ideasonboard.com> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Thu, 25 Nov 2010 02:22:15 +0000 (UTC) diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index b0316a7..b636444 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h @@ -466,8 +466,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;