From patchwork Mon Dec 3 16:26:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Damien Lespiau X-Patchwork-Id: 1834381 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork2.kernel.org (Postfix) with ESMTP id 0DB79DF2F9 for ; Mon, 3 Dec 2012 16:26:36 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id EE416E626B for ; Mon, 3 Dec 2012 08:26:35 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mail-we0-f177.google.com (mail-we0-f177.google.com [74.125.82.177]) by gabe.freedesktop.org (Postfix) with ESMTP id 53D02E5C77 for ; Mon, 3 Dec 2012 08:26:25 -0800 (PST) Received: by mail-we0-f177.google.com with SMTP id x48so1106601wey.36 for ; Mon, 03 Dec 2012 08:26:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=Kv2GyTf6hLapUNmpgci3g2R+Lk2PkczQpc5wxs6h3bY=; b=jmWx6mGk8hmVZK6FTFAsWtXQPhvNWkcLpsTtoaB79vGMv5El09K8cUNmEMwGuTze/J JXISnjMWRlu7LAojnQC3IF/p4DaM3dp1v80CUJHOYAsr2/YBv1chCErHD3iBjyg1LfGY 4Cu3/Fgq1fy1vOIKlUfOAEW0oZ4FvefxSjkMcvMJJ1YbokERzxaBBbcnFeQJzUWgR47l RjQKbrAGCnPOUJpfuLRQHjHFt7wtA5Mxg9utFv5DD+lsQ+pc4emeuHMZI0yUJVBrjmt0 MImNVaB+zxaZePDVZgG9hantiWFu3G+n7jDDHEOdafUjgzdLe9a0MMqu2gECCD8LVW23 IyDA== Received: by 10.180.88.71 with SMTP id be7mr10556372wib.17.1354551984216; Mon, 03 Dec 2012 08:26:24 -0800 (PST) Received: from localhost.localdomain ([83.217.123.106]) by mx.google.com with ESMTPS id en20sm13208505wid.4.2012.12.03.08.26.22 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 03 Dec 2012 08:26:23 -0800 (PST) From: Damien Lespiau To: intel-gfx@lists.freedesktop.org Date: Mon, 3 Dec 2012 16:26:16 +0000 Message-Id: <1354551977-2292-1-git-send-email-damien.lespiau@gmail.com> X-Mailer: git-send-email 1.7.11.7 Subject: [Intel-gfx] [PATCH 1/2] drm/i915: Fix dieing -> dying typo X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+patchwork-intel-gfx=patchwork.kernel.org@lists.freedesktop.org From: Damien Lespiau Signed-off-by: Damien Lespiau --- drivers/gpu/drm/i915/i915_gem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c index 9be450e..951f355 100644 --- a/drivers/gpu/drm/i915/i915_gem.c +++ b/drivers/gpu/drm/i915/i915_gem.c @@ -2816,7 +2816,7 @@ static bool i915_gem_valid_gtt_space(struct drm_device *dev, /* On non-LLC machines we have to be careful when putting differing * types of snoopable memory together to avoid the prefetcher - * crossing memory domains and dieing. + * crossing memory domains and dying. */ if (HAS_LLC(dev)) return true;