From patchwork Tue Nov 25 16:26:24 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Wood X-Patchwork-Id: 5380661 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 6601AC11AC for ; Tue, 25 Nov 2014 16:26:48 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C6CB320179 for ; Tue, 25 Nov 2014 16:26:43 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 2758020123 for ; Tue, 25 Nov 2014 16:26:39 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id BB2776E8E4; Tue, 25 Nov 2014 08:26:38 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) by gabe.freedesktop.org (Postfix) with ESMTP id 134486E928 for ; Tue, 25 Nov 2014 08:26:37 -0800 (PST) Received: by mail-wg0-f47.google.com with SMTP id n12so1336225wgh.20 for ; Tue, 25 Nov 2014 08:26:36 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=PlbmnqHSy6DJZba7vJ4Otkr7aDhPzz2LV49vZqIvU/c=; b=kum5i29zPl9EOw6+wfyzrsXUab7GyW4jb0ZtUO1a4nJfIcOF5fmhTmPA5qQy3sgPLi VSiIAKxDJFHdQgM7BqVzk4OePeyBu+pM0xcvwmJNVcNtNr6PjiTaLfmnk/+r8dQIQNVn F4qZTic8ZR0kXcz5bsulg+gBgovLVbtpGFtlqut7vJHHJgoNDfIsa16XUS0E3cVnx2rW iUFyhvuttUzGHlwXFzj45m4i76keOaLwQKMtql+TUXRKH38ZhkqlRtXJ1TNQHX/E+PtY DtII3H3DybnjlcwNN390qpdrbJom9wHfc2x9psn/WZok3gL+FCXbgYmYAYxqG9lVqAH6 qa5g== X-Gm-Message-State: ALoCoQkXtt3bA4px4VaP4XDN7k+kH7mY2vjIPKcWsjjGaDQRgCjhnUGN7F51MgRNiR0+t4n5IFUL X-Received: by 10.180.187.234 with SMTP id fv10mr33851596wic.25.1416932796187; Tue, 25 Nov 2014 08:26:36 -0800 (PST) Received: from pistachio.icx.intel.com ([83.217.123.106]) by mx.google.com with ESMTPSA id jp3sm17123297wid.9.2014.11.25.08.26.34 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 25 Nov 2014 08:26:35 -0800 (PST) From: Thomas Wood To: intel-gfx@lists.freedesktop.org Date: Tue, 25 Nov 2014 16:26:24 +0000 Message-Id: <1416932786-8000-1-git-send-email-thomas.wood@intel.com> X-Mailer: git-send-email 2.1.0 Subject: [Intel-gfx] [PATCH i-g-t 1/3] lib: fix symbol names in documentation comments 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.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, 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 Signed-off-by: Thomas Wood --- lib/drmtest.c | 2 +- lib/igt_core.h | 2 +- lib/intel_batchbuffer.c | 4 ++-- lib/ioctl_wrappers.c | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/drmtest.c b/lib/drmtest.c index 3d828e1..813c315 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -344,7 +344,7 @@ int drm_open_any_master(void) } /** - * drm_open_any: + * drm_open_any_render: * * Open an i915 drm render device node. * diff --git a/lib/igt_core.h b/lib/igt_core.h index 846f599..a258348 100644 --- a/lib/igt_core.h +++ b/lib/igt_core.h @@ -263,7 +263,7 @@ void igt_exit(void) __attribute__((noreturn)); #define igt_fail_on(expr) igt_assert(!(expr)) /** - * igt_assert_f: + * igt_fail_on_f: * @expr: condition to test * @...: format string and optional arguments * diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index c1b0e3d..30ef2cf 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -86,7 +86,7 @@ intel_batchbuffer_reset(struct intel_batchbuffer *batch) } /** - * intel_batchbuffer_reset: + * intel_batchbuffer_alloc: * @bufmgr: libdrm buffer manager * @devid: pci device id of the drm device * @@ -109,7 +109,7 @@ intel_batchbuffer_alloc(drm_intel_bufmgr *bufmgr, uint32_t devid) } /** - * intel_batchbuffer_reset: + * intel_batchbuffer_free: * @batch: batchbuffer object * * Releases all resource of the batchbuffer object @batch. diff --git a/lib/ioctl_wrappers.c b/lib/ioctl_wrappers.c index f423237..56280b6 100644 --- a/lib/ioctl_wrappers.c +++ b/lib/ioctl_wrappers.c @@ -620,7 +620,7 @@ bool gem_uses_aliasing_ppgtt(int fd) } /** - * gem_uses_aliasing_ppgtt: + * gem_available_fences: * @fd: open i915 drm file descriptor * * Feature test macro to query the kernel for the number of available fences @@ -811,7 +811,7 @@ uint64_t gem_aperture_size(int fd) } /** - * gem_aperture_size: + * gem_mappable_aperture_size: * @fd: open i915 drm file descriptor * * Feature test macro to query the kernel for the mappable gpu aperture size.