From patchwork Thu Jan 11 04:36:35 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 98521 X-Patchwork-Delegate: hverkuil@xs4all.nl Received: from sv.mirrors.kernel.org ([139.178.88.99]) by www.linuxtv.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rNmoR-002HtC-1h for patchwork@linuxtv.org; Thu, 11 Jan 2024 04:37:05 +0000 Received: from smtp.subspace.kernel.org (wormhole.subspace.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sv.mirrors.kernel.org (Postfix) with ESMTPS id 01831288F5D for ; Thu, 11 Jan 2024 04:36:59 +0000 (UTC) Received: from localhost.localdomain (localhost.localdomain [127.0.0.1]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 8AA7617F1; Thu, 11 Jan 2024 04:36:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="WcIRLklH" X-Original-To: linux-media@vger.kernel.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 73F38184D; Thu, 11 Jan 2024 04:36:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=2hyWdpNDdJxMYqGPRg1E7P4g07ZmgOwvZM9Ag3R0b80=; b=WcIRLklHB9+9+pXBkvZiQ8Yang +5OR/mB216wiwE3N5K8rmVcZuRmw3zu/HAwL1xSzGskhct9XRv7bEji3me6qsrq5oy3IImiPFOq7F Vov403V727ijIhgHScrxA343MyrYKJ5yLhfeSPcwn4h8SEpeBRg0jgS0soD/2qYqu181VsuXqT1iT Ae9Two99SWI+8+UGFToQT1IuqWKk99aDzI5XvSCA2VQWqpl0+YmrWJZKOL9F/sXV9AovPOpW2GN19 PK9GxpwUoVp8tZkvqGT+3bqVgP8Ki1EwLyxOD/Lp5l2CvgWvdHmWy/euALATvHTbxTztCnjpAy9+E gvKeB+yw==; Received: from [50.53.46.231] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1rNmnz-00Fp0S-3A; Thu, 11 Jan 2024 04:36:36 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Ezequiel Garcia , Philipp Zabel , linux-media@vger.kernel.org, linux-rockchip@lists.infradead.org, Mauro Carvalho Chehab Subject: [PATCH] media: verisilicon: fix hantro.h kernel-doc warning Date: Wed, 10 Jan 2024 20:36:35 -0800 Message-ID: <20240111043635.17065-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.43.0 Precedence: bulk X-Mailing-List: linux-media@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-LSpam-Score: -4.8 (----) X-LSpam-Report: No, score=-4.8 required=5.0 tests=BAYES_00=-1.9,DKIM_SIGNED=0.1,DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1,RCVD_IN_DNSWL_MED=-2.3 autolearn=unavailable autolearn_force=no Remove an extraneous kernel-doc description in hantro.h to eliminate a kernel-doc warning: hantro.h:277: warning: Excess struct member 'jpeg_enc' description in 'hantro_ctx' Signed-off-by: Randy Dunlap Cc: Ezequiel Garcia Cc: Philipp Zabel Cc: linux-media@vger.kernel.org Cc: linux-rockchip@lists.infradead.org Cc: Mauro Carvalho Chehab Reviewed-by: Nicolas Dufresne --- drivers/media/platform/verisilicon/hantro.h | 1 - 1 file changed, 1 deletion(-) diff -- a/drivers/media/platform/verisilicon/hantro.h b/drivers/media/platform/verisilicon/hantro.h --- a/drivers/media/platform/verisilicon/hantro.h +++ b/drivers/media/platform/verisilicon/hantro.h @@ -237,7 +237,6 @@ struct hantro_dev { * @codec_ops: Set of operations related to codec mode. * @postproc: Post-processing context. * @h264_dec: H.264-decoding context. - * @jpeg_enc: JPEG-encoding context. * @mpeg2_dec: MPEG-2-decoding context. * @vp8_dec: VP8-decoding context. * @hevc_dec: HEVC-decoding context.