From patchwork Tue Apr 18 10:59:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomi Valkeinen X-Patchwork-Id: 674916 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D55ABC77B75 for ; Tue, 18 Apr 2023 10:59:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230423AbjDRK7w (ORCPT ); Tue, 18 Apr 2023 06:59:52 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46428 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230026AbjDRK7t (ORCPT ); Tue, 18 Apr 2023 06:59:49 -0400 Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7363E40EF for ; Tue, 18 Apr 2023 03:59:48 -0700 (PDT) Received: from desky.lan (91-154-35-171.elisa-laajakaista.fi [91.154.35.171]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1D4C2F07; Tue, 18 Apr 2023 12:59:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1681815580; bh=fkqhTtiEtWHCMW9an1gcrg9ETfkUUKjhS69j12XYVlI=; h=From:To:Cc:Subject:Date:From; b=GRAMQg4RdcqcDGQWNDgSWGqkQuDm1dnENnesKW//bJlFxcex2QZui9BYuXlg0ifdM aqwtm6qMaxkCV7S+JcOPVopj/Shi69ykbiOgEqw7PaOdMuSW6aRd3Unx1EvqBEQoOy hDpncX/7I0MiDsbbm+G7foUglYHkNrrLuoZ4kJKQ= From: Tomi Valkeinen To: linux-media@vger.kernel.org, Mauro Carvalho Chehab , Laurent Pinchart , Sakari Ailus , Hans Verkuil , Jacopo Mondi Cc: Tomi Valkeinen Subject: [PATCH] media: v4l2-subdev: Fix missing kerneldoc for client_caps Date: Tue, 18 Apr 2023 13:59:24 +0300 Message-Id: <20230418105924.126608-1-tomi.valkeinen@ideasonboard.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Add missing kernel doc for the new 'client_caps' field in struct v4l2_subdev_fh. Signed-off-by: Tomi Valkeinen --- include/media/v4l2-subdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index cfd19e72d0fc..9d0a6a993fb0 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h @@ -1119,6 +1119,7 @@ struct v4l2_subdev { * @vfh: pointer to &struct v4l2_fh * @state: pointer to &struct v4l2_subdev_state * @owner: module pointer to the owner of this file handle + * @client_caps: bitmask of V4L2_SUBDEV_CLIENT_CAP_* */ struct v4l2_subdev_fh { struct v4l2_fh vfh;