From patchwork Tue Feb 3 13:53:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Jakobi X-Patchwork-Id: 5774881 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 7C0DCBF440 for ; Wed, 4 Feb 2015 07:31:40 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A94CC202E5 for ; Wed, 4 Feb 2015 07:31:39 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id C6018202F2 for ; Wed, 4 Feb 2015 07:31:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 28E156E687; Tue, 3 Feb 2015 23:31:30 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from smtp.math.uni-bielefeld.de (smtp.math.uni-bielefeld.de [129.70.45.10]) by gabe.freedesktop.org (Postfix) with ESMTP id 116E76E5F7 for ; Tue, 3 Feb 2015 05:54:23 -0800 (PST) Received: from chidori.math.uni-bielefeld.de (dhcp24-141.math.uni-bielefeld.de [129.70.24.141]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by smtp.math.uni-bielefeld.de (Postfix) with ESMTPSA id 1BE7760F9C; Tue, 3 Feb 2015 14:54:22 +0100 (CET) From: Tobias Jakobi To: linux-samsung-soc@vger.kernel.org Subject: [PATCH 03/15] tests/exynos: fix typos and change wording Date: Tue, 3 Feb 2015 14:53:53 +0100 Message-Id: <1422971645-30621-4-git-send-email-tjakobi@math.uni-bielefeld.de> X-Mailer: git-send-email 2.0.5 In-Reply-To: <1422971645-30621-1-git-send-email-tjakobi@math.uni-bielefeld.de> References: <1422971645-30621-1-git-send-email-tjakobi@math.uni-bielefeld.de> X-Mailman-Approved-At: Tue, 03 Feb 2015 23:31:29 -0800 Cc: Tobias Jakobi , robclark@freedesktop.org, dri-devel@lists.freedesktop.org, m.szyprowski@samsung.com X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.18 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.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 No functional changes. Signed-off-by: Tobias Jakobi --- exynos/exynos_fimg2d.c | 8 ++++---- tests/exynos/exynos_fimg2d_test.c | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/exynos/exynos_fimg2d.c b/exynos/exynos_fimg2d.c index d22c893..e7b00b1 100644 --- a/exynos/exynos_fimg2d.c +++ b/exynos/exynos_fimg2d.c @@ -145,13 +145,13 @@ static void g2d_reset(struct g2d_context *ctx) } /* - * g2d_flush - summit all commands and values in user side command buffer + * g2d_flush - submit all commands and values in user side command buffer * to command queue aware of fimg2d dma. * * @ctx: a pointer to g2d_context structure. * * This function should be called after all commands and values to user - * side command buffer is set to summit that buffer to kernel side driver. + * side command buffer are set. It submits that buffer to the kernel side driver. */ static int g2d_flush(struct g2d_context *ctx) { @@ -192,7 +192,7 @@ static int g2d_flush(struct g2d_context *ctx) /** * g2d_init - create a new g2d context and get hardware version. * - * fd: a file descriptor to drm device driver opened. + * fd: a file descriptor to an opened drm device. */ drm_public struct g2d_context *g2d_init(int fd) { @@ -524,7 +524,7 @@ g2d_copy_with_scale(struct g2d_context *ctx, struct g2d_image *src, } /** - * g2d_blend - blend image data in source and destion buffers + * g2d_blend - blend image data in source and destination buffers. * * @ctx: a pointer to g2d_context structure. * @src: a pointer to g2d_image structure including image and buffer diff --git a/tests/exynos/exynos_fimg2d_test.c b/tests/exynos/exynos_fimg2d_test.c index 41fb869..aa140e5 100644 --- a/tests/exynos/exynos_fimg2d_test.c +++ b/tests/exynos/exynos_fimg2d_test.c @@ -39,7 +39,7 @@ static unsigned int screen_width, screen_height; /* * A structure to test fimg2d hw. * - * @solid_fild: fill given color data to source buffer. + * @solid_fill: fill given color data to source buffer. * @copy: copy source to destination buffer. * @copy_with_scale: copy source to destination buffer scaling up or * down properly. @@ -256,7 +256,7 @@ static int g2d_solid_fill_test(struct exynos_device *dev, struct exynos_bo *dst) memset(&img, 0, sizeof(struct g2d_image)); img.bo[0] = dst->handle; - printf("soild fill test.\n"); + printf("solid fill test.\n"); srand(time(NULL)); img_w = screen_width;