From nobody Fri Jun 19 03:10:01 2026 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 93951C433F5 for ; Fri, 8 Apr 2022 17:53:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238371AbiDHRz7 (ORCPT ); Fri, 8 Apr 2022 13:55:59 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46700 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238395AbiDHRzz (ORCPT ); Fri, 8 Apr 2022 13:55:55 -0400 Received: from smtp.hosts.co.uk (smtp.hosts.co.uk [85.233.160.19]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 95B58D747B; Fri, 8 Apr 2022 10:53:48 -0700 (PDT) Received: from [78.32.143.231] (helo=devbox3.arkver.dev) by smtp.hosts.co.uk with esmtpsa (TLS1.3:TLS_AES_256_GCM_SHA384:256) (Exim) (envelope-from ) id 1ncsnq-000CRH-BA; Fri, 08 Apr 2022 18:53:46 +0100 From: Ian Jamison To: Sakari Ailus , Laurent Pinchart , Mauro Carvalho Chehab Cc: Ian Arkver , linux-media@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] media: media-entity.h: Fix documentation for media_create_intf_link Date: Fri, 8 Apr 2022 18:53:45 +0100 Message-Id: <21f190a8bb9ddaa43949b4455983bd66b4e11798.1649440397.git.ian.dev@arkver.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The documentation comment was inserted between the return type and the function name. Reunite the lines. Signed-off-by: Ian Jamison Fixes: db7ee32aa185 ("[media] media-device.h: Improve documentation and upd= ate it") Reviewed-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- include/media/media-entity.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/media/media-entity.h b/include/media/media-entity.h index 742918962d46..9bc9a55df71e 100644 --- a/include/media/media-entity.h +++ b/include/media/media-entity.h @@ -1030,7 +1030,6 @@ __must_check media_devnode_create(struct media_device= *mdev, * removed. */ void media_devnode_remove(struct media_intf_devnode *devnode); -struct media_link * =20 /** * media_create_intf_link() - creates a link between an entity and an inte= rface @@ -1061,6 +1060,7 @@ struct media_link * * the interface and media_device_register_entity() should be called fo= r the * interface that will be part of the link. */ +struct media_link * __must_check media_create_intf_link(struct media_entity *entity, struct media_interface *intf, u32 flags); --=20 2.35.1