From patchwork Sat Dec 12 16:42:24 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Nicolai_H=C3=A4hnle?= X-Patchwork-Id: 7835201 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 15C2A9F387 for ; Sat, 12 Dec 2015 16:43:02 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4A09C20398 for ; Sat, 12 Dec 2015 16:43:01 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 06724203AB for ; Sat, 12 Dec 2015 16:43:00 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3AE146E3A5; Sat, 12 Dec 2015 08:42:59 -0800 (PST) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-qk0-f179.google.com (mail-qk0-f179.google.com [209.85.220.179]) by gabe.freedesktop.org (Postfix) with ESMTPS id 1C3CB6E38A for ; Sat, 12 Dec 2015 08:42:55 -0800 (PST) Received: by qkck189 with SMTP id k189so46599209qkc.0 for ; Sat, 12 Dec 2015 08:42:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=iNpeJqoYTytNCJbmdllMoBqaDD/4+F0Af7wfOwnpBnA=; b=v2WdunvjxG/shaYzFnn/6A1ysouT/ecEmHPsMzRYnZH9wPiTQ7uket1m0jGp0y0EYu LejvkFwhRxCNOsJqmekCVPsDyE38/qu2yH6n1x5Um6US950B0z9asUScyEbaPBH7IMS6 LT2Whz02cZaWOhgxDq/2MjWsL8lbYCOPApgV+SjOjlcYMnncxYKNGaY+7na+Q8dGUu+l 2yR6dtxjyUY5GLrCjRDvScp9mJMHJddioWVODAgDBtzrnUmc8zhcGDv9wPmbpZ+P6T1n YVRhgigGQnH2jLuthhMPpEu+u9k4e/g+apZvXKB2FXhtXu2U7GTmjhjVIZxK4aBI/ZGy 962A== X-Received: by 10.13.249.194 with SMTP id j185mr13420153ywf.66.1449938574317; Sat, 12 Dec 2015 08:42:54 -0800 (PST) Received: from cassiopeia.local ([200.121.5.35]) by smtp.gmail.com with ESMTPSA id e64sm16694564ywb.25.2015.12.12.08.42.53 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 12 Dec 2015 08:42:53 -0800 (PST) From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?= To: dri-devel@lists.freedesktop.org Subject: [PATCH 2/3] drm/radeon: fix typo Date: Sat, 12 Dec 2015 11:42:24 -0500 Message-Id: <1449938545-8707-2-git-send-email-nhaehnle@gmail.com> X-Mailer: git-send-email 2.5.0 MIME-Version: 1.0 Cc: =?UTF-8?q?Nicolai=20H=C3=A4hnle?= 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: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, 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 From: Nicolai Hähnle Signed-off-by: Nicolai Hähnle Reviewed-by: Michel Dänzer --- drivers/gpu/drm/radeon/cik.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c index 248953d..d93539d 100644 --- a/drivers/gpu/drm/radeon/cik.c +++ b/drivers/gpu/drm/radeon/cik.c @@ -4135,7 +4135,7 @@ struct radeon_fence *cik_copy_cpdma(struct radeon_device *rdev, * Emits an DE (drawing engine) or CE (constant engine) IB * on the gfx ring. IBs are usually generated by userspace * acceleration drivers and submitted to the kernel for - * sheduling on the ring. This function schedules the IB + * scheduling on the ring. This function schedules the IB * on the gfx ring for execution by the GPU. */ void cik_ring_ib_execute(struct radeon_device *rdev, struct radeon_ib *ib)