From patchwork Sun Apr 3 18:48:08 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Engestrom X-Patchwork-Id: 8735451 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.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 60D189F3D1 for ; Mon, 4 Apr 2016 00:24:22 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 960A020204 for ; Mon, 4 Apr 2016 00:24:21 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id B6F8E201E4 for ; Mon, 4 Apr 2016 00:24:20 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A12438999C; Mon, 4 Apr 2016 00:23:55 +0000 (UTC) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-lf0-f68.google.com (mail-lf0-f68.google.com [209.85.215.68]) by gabe.freedesktop.org (Postfix) with ESMTPS id 1FF106E0A0 for ; Sun, 3 Apr 2016 18:48:37 +0000 (UTC) Received: by mail-lf0-f68.google.com with SMTP id p81so14110942lfb.3 for ; Sun, 03 Apr 2016 11:48:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Scg1GMNC/n+10a1CsLd0x85D4FTmG1DrNfl2uYrx3C8=; b=AoWO4UUCMvUPmUCKq3Y9pi0/dkKvksPTQT4TXgzhelICr9j1fMSaghlaWPF88VvAFF AxNE0+3XZe/MlynHTAxtvYt2YJhGbHr12H76abIRaqPvnz8fZYoTNaO5rNx5tF437v6V L9o+zsWqcobNM3G1jEyVvz4L+8AGlgvZgOih/hvNKoUKYQW5hm1wSfeKoFlBRvT3d2KI 134rZldJLRitFWcqNWhJR38gikHpSluGNTqwSCEw4oA3O6moLZ1eSB69HR2BkggMf7Ay +brOIgnhy3E5MBG2EKUIiSKDLT4sZvmXQWvMKiLwbgI/iM0jrRjpbzsILQADWVnGJteZ tzGA== X-Gm-Message-State: AD7BkJIndtNqGGUZBDeaIKqvFhed2RKyCwISP1XCWKg8UoJpYHVJa6Ms74UssOIYJ/IAug== X-Received: by 10.194.2.41 with SMTP id 9mr6459534wjr.10.1459709314421; Sun, 03 Apr 2016 11:48:34 -0700 (PDT) Received: from Eric-XPS.localdomain (0545748a.skybroadband.com. [5.69.116.138]) by smtp.gmail.com with ESMTPSA id i206sm9924882wmf.1.2016.04.03.11.48.33 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 03 Apr 2016 11:48:33 -0700 (PDT) From: Eric Engestrom To: dri-devel@lists.freedesktop.org Subject: [PATCH libdrm 3/7] freedreno: Fix spelling mistakes Date: Sun, 3 Apr 2016 19:48:08 +0100 Message-Id: <1459709292-5153-3-git-send-email-eric@engestrom.ch> X-Mailer: git-send-email 2.8.0 In-Reply-To: <1459709292-5153-1-git-send-email-eric@engestrom.ch> References: <1459709292-5153-1-git-send-email-eric@engestrom.ch> X-Mailman-Approved-At: Mon, 04 Apr 2016 00:23:50 +0000 Cc: Eric Engestrom 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=-5.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, 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: Eric Engestrom --- freedreno/kgsl/kgsl_drm.h | 2 +- freedreno/kgsl/msm_kgsl.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/freedreno/kgsl/kgsl_drm.h b/freedreno/kgsl/kgsl_drm.h index f1c7f4e..281978e 100644 --- a/freedreno/kgsl/kgsl_drm.h +++ b/freedreno/kgsl/kgsl_drm.h @@ -81,7 +81,7 @@ struct drm_kgsl_gem_create_fd) /* Memory types - these define the source and caching policies of the GEM memory chunk */ -/* Legacy definitions left for compatability */ +/* Legacy definitions left for compatibility */ #define DRM_KGSL_GEM_TYPE_EBI 0 #define DRM_KGSL_GEM_TYPE_SMI 1 diff --git a/freedreno/kgsl/msm_kgsl.h b/freedreno/kgsl/msm_kgsl.h index e67190f..5b36eeb 100644 --- a/freedreno/kgsl/msm_kgsl.h +++ b/freedreno/kgsl/msm_kgsl.h @@ -31,7 +31,7 @@ #define KGSL_FLAGS_SOFT_RESET 0x00000100 #define KGSL_FLAGS_PER_CONTEXT_TIMESTAMPS 0x00000200 -/* Clock flags to show which clocks should be controled by a given platform */ +/* Clock flags to show which clocks should be controlled by a given platform */ #define KGSL_CLK_SRC 0x00000001 #define KGSL_CLK_CORE 0x00000002 #define KGSL_CLK_IFACE 0x00000004 @@ -295,7 +295,7 @@ struct kgsl_cmdstream_freememontimestamp { /* Previous versions of this header had incorrectly defined IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP as a read-only ioctl instead - of a write only ioctl. To ensure binary compatability, the following + of a write only ioctl. To ensure binary compatibility, the following #define will be used to intercept the incorrect ioctl */