From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96122C43381 for ; Thu, 11 Mar 2021 10:21:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 59C2F64FBA for ; Thu, 11 Mar 2021 10:21:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232167AbhCKKUr (ORCPT ); Thu, 11 Mar 2021 05:20:47 -0500 Received: from lb2-smtp-cloud9.xs4all.net ([194.109.24.26]:58621 "EHLO lb2-smtp-cloud9.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232280AbhCKKU3 (ORCPT ); Thu, 11 Mar 2021 05:20:29 -0500 Received: from cust-b5b5937f ([IPv6:fc0c:c16d:66b8:757f:c639:739b:9d66:799d]) by smtp-cloud9.xs4all.net with ESMTPA id KIQYlPLX0C40pKIQelKo4w; Thu, 11 Mar 2021 11:20:28 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=xs4all.nl; s=s2; t=1615458028; bh=uGvVBeq6ycOp13ZyFtQ3jaXCLHTR2CD+mwr8VWIvX24=; h=From:To:Subject:Date:Message-Id:MIME-Version:From:Subject; b=QwyTz0LjYQS90nRQ8HerYdkzYHz8X/7ZhkFNJKUCcY47JkkCXLeWFA0OAa/ogx3E6 QEOAINjZfCVr891wgxdeKPbuj8LKnRT1hST4ke4t+d57BysrvCYR97aklxif+84Zos 9YmWZ5uJLlHYvrRZTJzIqvNHFPuUylLUa6frtRl/sxViee6ngH+EW223G1SaILqTYA tVMA09536ciIWsuzrzr/oDv5mKqCW+ptJK3V7wuXT7OF00fzhmc7fvyB7RWbShG/F8 s9SPWwrfoAvtzztnsE0+0EqhfZLZXu7RlNBEByXwS6VlPUOAtQB+46EwrkFA98Jevm vNE8mTkccaGXg== From: Hans Verkuil To: linux-media@vger.kernel.org Cc: Hans Verkuil , Tomi Valkeinen Subject: [PATCH 03/13] ti-vpe/cal.h: fix kernel-doc formatting Date: Thu, 11 Mar 2021 11:20:12 +0100 Message-Id: <20210311102022.96954-4-hverkuil-cisco@xs4all.nl> X-Mailer: git-send-email 2.30.1 In-Reply-To: <20210311102022.96954-1-hverkuil-cisco@xs4all.nl> References: <20210311102022.96954-1-hverkuil-cisco@xs4all.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4xfI2xPb/zUiB1u72ER64GdeqlP5VATSz1rK0PzXa8A/OqDFQ+9I+MEpAR3WYnAs21EYlBUZ6IxwHRH6xiF5pUwmHqHeW73aKBo1Cd+mE10150Hj0IjQg7 ecQCpfUlobofQ4V2L0ZWzyWiBBpQFk0AB9QJ8+ZMYGJf2IQyv28zB5+HYc8rqQ7O6rPCkoVzKowBnfff9HGYHvNFMbYHTFG1bmMHgsyUq0hf0LvkLpZKHvIc gcFN6BeL+mporyfigEU2lOd7XyR5QGu+zrW9aTbDGESxUHE7UdyxaBkTeK7JjytN Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Fix inline struct member documentation, was missing the '@memb:' prefix. Signed-off-by: Hans Verkuil Cc: Tomi Valkeinen --- drivers/media/platform/ti-vpe/cal.h | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/drivers/media/platform/ti-vpe/cal.h b/drivers/media/platform/ti-vpe/cal.h index d471b7f82519..7aaea82c6b42 100644 --- a/drivers/media/platform/ti-vpe/cal.h +++ b/drivers/media/platform/ti-vpe/cal.h @@ -84,35 +84,34 @@ struct cal_buffer { /** * struct cal_dmaqueue - Queue of DMA buffers - * @active: Buffer being DMA'ed to for the current frame */ struct cal_dmaqueue { /** - * Protects all fields in the cal_dmaqueue. + * @lock: Protects all fields in the cal_dmaqueue. */ spinlock_t lock; /** - * Buffers queued to the driver and waiting for DMA processing. + * @queue: Buffers queued to the driver and waiting for DMA processing. * Buffers are added to the list by the vb2 .buffer_queue() operation, * and move to @pending when they are scheduled for the next frame. */ struct list_head queue; /** - * Buffer provided to the hardware to DMA the next frame. Will move to - * @active at the end of the current frame. + * @pending: Buffer provided to the hardware to DMA the next frame. + * Will move to @active at the end of the current frame. */ struct cal_buffer *pending; /** - * Buffer being DMA'ed to for the current frame. Will be retired and - * given back to vb2 at the end of the current frame if a @pending - * buffer has been scheduled to replace it. + * @active: Buffer being DMA'ed to for the current frame. Will be + * retired and given back to vb2 at the end of the current frame if + * a @pending buffer has been scheduled to replace it. */ struct cal_buffer *active; - /** State of the DMA engine. */ + /** @state: State of the DMA engine. */ enum cal_dma_state state; - /** Wait queue to signal a @state transition to CAL_DMA_STOPPED. */ + /** @wait: Wait queue to signal a @state transition to CAL_DMA_STOPPED. */ struct wait_queue_head wait; }; -- 2.30.1