From patchwork Thu Feb 23 12:19:09 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Ma=C3=ADra_Canal?= X-Patchwork-Id: 13150218 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 46D29C64ED6 for ; Thu, 23 Feb 2023 12:19:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233979AbjBWMTl (ORCPT ); Thu, 23 Feb 2023 07:19:41 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48888 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233183AbjBWMTk (ORCPT ); Thu, 23 Feb 2023 07:19:40 -0500 Received: from fanzine2.igalia.com (fanzine2.igalia.com [213.97.179.56]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 015A43645D for ; Thu, 23 Feb 2023 04:19:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=igalia.com; s=20170329; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-Id: Date:Subject:Cc:To:From:Sender:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=Md5XL3LVqYuyu7jSBi94vp1XHM897eearoraEjdM214=; b=c6gsjacZ9RnI2Nt5BUW07wUQZv 4gBV6q5+uIKZeU6k8qJqN47PLi0rg2baQke85oeczVc5on3SihaUhqPSxA8SUjwZJeX5i898idn3a XucT131+IKsr3fwmRP/7f10fcAwlyO4qvabxyz/gRtpQ/6GumA0Hcm3bndYIJn6odzmtpfY8xoNge X3WAqcBI7Tho7grk1oySC69IPSp0BVhmzZd2xKYwwnqx5Jj7wf2OJTWUIG0E8DHvyZUpgi02IO8pL mNGYZv7IdHNL9XXmKfsvvxWDKHbQ7ladC9m3TXnj+ZAE6teoejrsiE98b8aQ3NRVexBpsr81y/Pq0 eDKhrowQ==; Received: from [187.36.234.139] (helo=bowie..) by fanzine2.igalia.com with esmtpsa (Cipher TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim) id 1pVAZN-00C3xT-Ju; Thu, 23 Feb 2023 13:19:30 +0100 From: =?utf-8?q?Ma=C3=ADra_Canal?= To: Sumit Semwal , =?utf-8?q?Christian_K=C3=B6nig?= , Dmitry Osipenko , Melissa Wen Cc: linux-media@vger.kernel.org, dri-devel@lists.freedesktop.org, =?utf-8?q?Ma=C3=ADra_Canal?= Subject: [PATCH] dma-buf: Include missing parentheses to documentation Date: Thu, 23 Feb 2023 09:19:09 -0300 Message-Id: <20230223121909.149980-1-mcanal@igalia.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org The missing parentheses prevents the function to be rendered as a link in the documentation. So, add the missing parentheses to the function on the documentation. Signed-off-by: MaĆ­ra Canal --- drivers/dma-buf/dma-buf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma-buf/dma-buf.c b/drivers/dma-buf/dma-buf.c index 757c0fb77a6c..aa4ea8530cb3 100644 --- a/drivers/dma-buf/dma-buf.c +++ b/drivers/dma-buf/dma-buf.c @@ -828,7 +828,7 @@ static struct sg_table * __map_dma_buf(struct dma_buf_attachment *attach, * - dma_buf_attach() * - dma_buf_dynamic_attach() * - dma_buf_detach() - * - dma_buf_export( + * - dma_buf_export() * - dma_buf_fd() * - dma_buf_get() * - dma_buf_put()