From patchwork Tue Sep 15 12:52:21 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geliang Tang X-Patchwork-Id: 7193161 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 039FC9F380 for ; Wed, 16 Sep 2015 09:30:28 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 26C2620893 for ; Wed, 16 Sep 2015 09:30:27 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 22D792088F for ; Wed, 16 Sep 2015 09:30:26 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id BB9FF6EAED; Wed, 16 Sep 2015 02:30:24 -0700 (PDT) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org X-Greylist: delayed 914 seconds by postgrey-1.34 at gabe; Tue, 15 Sep 2015 06:11:16 PDT Received: from m12-15.163.com (m12-15.163.com [220.181.12.15]) by gabe.freedesktop.org (Postfix) with ESMTP id EED8F893EB; Tue, 15 Sep 2015 06:11:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=From:Subject:Date:Message-Id; bh=xo1tO3KETj+eeJp4aQ xTC9vseuY01ShNsahdZnYGiNY=; b=KUpclANF2gMoaMmufbjB8JIvcpMTbGKkUu LSqKUnPq+qLPVNeQVxWq6IpSINwxOX1ukFOrH5BHzKr9gmas4xReA7vYzoPl9XKH WoNAhiN+WOmv0QjfI/LXSfGjo4WLbbwNWRQtL8RjW7+M/z1YSJxFc+t0Lc8Wdz5t GUsDuakY4= Received: from localhost (unknown [218.17.162.133]) by smtp11 (Coremail) with SMTP id D8CowEBp7FGKFPhVfbq3Ag--.64965S3; Tue, 15 Sep 2015 20:52:29 +0800 (CST) From: Geliang Tang To: Daniel Vetter , Jani Nikula , David Airlie Date: Tue, 15 Sep 2015 05:52:21 -0700 Message-Id: <6d965fc0ee156ffa54de676203e9265939ea698e.1442350180.git.geliangtang@163.com> X-Mailer: git-send-email 1.9.1 X-CM-TRANSID: D8CowEBp7FGKFPhVfbq3Ag--.64965S3 X-Coremail-Antispam: 1Uf129KBjvJXoW7Cr4DXF18tr18GFWUZFW5ZFb_yoW8ZFy3pw sxJ3WDZrs3tF12qw4xXa1vvFy3KanxGFWxGrsrWwn8ur4Yya4vyr9akry5XFy8Cr1xAryI qF9F9Fy2vw1jyw7anT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07UQdbnUUUUU= X-Originating-IP: [218.17.162.133] X-CM-SenderInfo: 5jhoxtpqjwt0rj6rljoofrz/1tbiMA92mVWBRIeWBQAAsU X-Mailman-Approved-At: Wed, 16 Sep 2015 02:30:24 -0700 Cc: Geliang Tang , intel-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org Subject: [Intel-gfx] [PATCH] drm/i915: fix kernel-doc warnings in i915_gem_gtt.c X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, FREEMAIL_FROM,RCVD_IN_DNSWL_MED,T_DKIM_INVALID,T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham 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 Fix the following 'make htmldocs' warnings: .//drivers/gpu/drm/i915/i915_gem_gtt.c:758: warning: No description found for parameter 'length' .//drivers/gpu/drm/i915/i915_gem_gtt.c:818: warning: No description found for parameter 'length' .//drivers/gpu/drm/i915/i915_gem_gtt.c:818: warning: No description found for parameter 'new_pds' .//drivers/gpu/drm/i915/i915_gem_gtt.c:758: warning: No description found for parameter 'length' .//drivers/gpu/drm/i915/i915_gem_gtt.c:818: warning: No description found for parameter 'length' .//drivers/gpu/drm/i915/i915_gem_gtt.c:818: warning: No description found for parameter 'new_pds' Signed-off-by: Geliang Tang --- drivers/gpu/drm/i915/i915_gem_gtt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c b/drivers/gpu/drm/i915/i915_gem_gtt.c index 96054a5..c070a1f 100644 --- a/drivers/gpu/drm/i915/i915_gem_gtt.c +++ b/drivers/gpu/drm/i915/i915_gem_gtt.c @@ -737,7 +737,7 @@ static void gen8_ppgtt_cleanup(struct i915_address_space *vm) * @ppgtt: Master ppgtt structure. * @pd: Page directory for this address range. * @start: Starting virtual address to begin allocations. - * @length Size of the allocations. + * @length: Size of the allocations. * @new_pts: Bitmap set by function with new allocations. Likely used by the * caller to free on error. * @@ -792,8 +792,8 @@ unwind_out: * @ppgtt: Master ppgtt structure. * @pdp: Page directory pointer for this address range. * @start: Starting virtual address to begin allocations. - * @length Size of the allocations. - * @new_pds Bitmap set by function with new allocations. Likely used by the + * @length: Size of the allocations. + * @new_pds: Bitmap set by function with new allocations. Likely used by the * caller to free on error. * * Allocate the required number of page directories starting at the pde index of