From patchwork Tue Feb 24 14:20:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tobias Jakobi X-Patchwork-Id: 5872941 Return-Path: X-Original-To: patchwork-linux-samsung-soc@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 1EA35BF440 for ; Tue, 24 Feb 2015 14:22:54 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4198020120 for ; Tue, 24 Feb 2015 14:22:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 635972037E for ; Tue, 24 Feb 2015 14:22:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753247AbbBXOWb (ORCPT ); Tue, 24 Feb 2015 09:22:31 -0500 Received: from smtp.math.uni-bielefeld.de ([129.70.45.10]:47904 "EHLO smtp.math.uni-bielefeld.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752411AbbBXOWa (ORCPT ); Tue, 24 Feb 2015 09:22:30 -0500 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 0C1CA60FE9; Tue, 24 Feb 2015 15:22:28 +0100 (CET) From: Tobias Jakobi To: linux-samsung-soc@vger.kernel.org Cc: dri-devel@lists.freedesktop.org, emil.l.velikov@gmail.com, jy0922.shim@samsung.com, m.szyprowski@samsung.com, robclark@freedesktop.org, Tobias Jakobi Subject: [PATCH v3 03/17] tests/exynos: fix typos and change wording Date: Tue, 24 Feb 2015 15:20:41 +0100 Message-Id: <1424787655-10739-4-git-send-email-tjakobi@math.uni-bielefeld.de> X-Mailer: git-send-email 2.0.5 In-Reply-To: <1424787655-10739-1-git-send-email-tjakobi@math.uni-bielefeld.de> References: <1424787655-10739-1-git-send-email-tjakobi@math.uni-bielefeld.de> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 9c66c3a..df18a08 100644 --- a/exynos/exynos_fimg2d.c +++ b/exynos/exynos_fimg2d.c @@ -148,13 +148,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) { @@ -195,7 +195,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) { @@ -527,7 +527,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;