From patchwork Fri Aug 8 10:42:32 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 4695251 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 909FC9F373 for ; Fri, 8 Aug 2014 10:42:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C32D42016C for ; Fri, 8 Aug 2014 10:42:41 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id DFB352010C for ; Fri, 8 Aug 2014 10:42:39 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 32F8C6E010; Fri, 8 Aug 2014 03:42:39 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-pa0-f46.google.com (mail-pa0-f46.google.com [209.85.220.46]) by gabe.freedesktop.org (Postfix) with ESMTP id E17156E010 for ; Fri, 8 Aug 2014 03:42:37 -0700 (PDT) Received: by mail-pa0-f46.google.com with SMTP id lj1so7155725pab.33 for ; Fri, 08 Aug 2014 03:42:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=TO8I7xPse4R7R+FcmxIXBZ2QbqA7DsjVcY1fhx5ef18=; b=Z5MEBYZ4KOcX4xWOafhqaEY2uTKB0n7TfsDKwmv3tqxoxXrxiPeMi8yqz59moKx7Ss NzoIQ03Dg0Bg79jOnlkwtCsQp7k4dNLn+O0oH7xaTgT4iux3zk4DErhE4mdggb/lMO8P SRXUdhPD/xmIMuv50/iac+VfTYLN1OnrcMmHVLJC0UsJrGt1DqoPNNhhkF6LtY27aQPu LiSexHd36oaJIuazDLh4uTPeDiOcjNif5DJPvOZuPWBKpeM9jWzPVpAd8QTINTYF+CRa qtwKyaVrqGLwzwKe5cVfIHr+2DvidhO7i8whYrB1YsHFrOh4WzG6tkGMrT+1FGi0+DEP +MNQ== X-Received: by 10.69.12.33 with SMTP id en1mr23482203pbd.66.1407494557584; Fri, 08 Aug 2014 03:42:37 -0700 (PDT) Received: from localhost ([216.228.120.20]) by mx.google.com with ESMTPSA id fq1sm2576548pbb.32.2014.08.08.03.42.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 08 Aug 2014 03:42:36 -0700 (PDT) From: Thierry Reding To: Sumit Semwal Subject: [PATCH] dma-buf/fence: Fix a kerneldoc warning Date: Fri, 8 Aug 2014 12:42:32 +0200 Message-Id: <1407494552-18147-1-git-send-email-thierry.reding@gmail.com> X-Mailer: git-send-email 2.0.4 Cc: linaro-mm-sig@lists.linaro.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, linux-media@vger.kernel.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Thierry Reding kerneldoc doesn't know how to parse variables, so don't let it try. Signed-off-by: Thierry Reding --- drivers/dma-buf/fence.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma-buf/fence.c b/drivers/dma-buf/fence.c index 4222cb2aa96a..7bb9d65d9a2c 100644 --- a/drivers/dma-buf/fence.c +++ b/drivers/dma-buf/fence.c @@ -29,7 +29,7 @@ EXPORT_TRACEPOINT_SYMBOL(fence_annotate_wait_on); EXPORT_TRACEPOINT_SYMBOL(fence_emit); -/** +/* * fence context counter: each execution context should have its own * fence context, this allows checking if fences belong to the same * context or not. One device can have multiple separate contexts,