From patchwork Tue Oct 22 19:09:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?TWFyZWsgT2zFocOhaw==?= X-Patchwork-Id: 3084531 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.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 48B649F2B7 for ; Tue, 22 Oct 2013 19:09:37 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B9DAB204A7 for ; Tue, 22 Oct 2013 19:09:32 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 23539204A0 for ; Tue, 22 Oct 2013 19:09:31 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F0F77E6687 for ; Tue, 22 Oct 2013 12:09:30 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-ee0-f53.google.com (mail-ee0-f53.google.com [74.125.83.53]) by gabe.freedesktop.org (Postfix) with ESMTP id 3EF51E5C71 for ; Tue, 22 Oct 2013 12:09:19 -0700 (PDT) Received: by mail-ee0-f53.google.com with SMTP id t10so4672619eei.40 for ; Tue, 22 Oct 2013 12:09:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=L3agGrDBit5iQS6K6/dInmuHTKWAVPV8BRD96vvfE58=; b=rHr+WvWKkQGEFSMHTlhIJ5ZSAE1FEVLEeHXE/LbSwm7GJRcoxpxTn95vaEQC4wRjTM WdPpwJ1iFHob3XBlN43GjSlmvh6eFLMAlZ7Yc3YedpgeRrtfBmmQ4Ws7DhSEGIZsU2eW 7RZm9tOJNNzuothX9vg4OHQcGk44yUimdf3CYwrj6khPYhSRkDqhpNiqojVoE1IJKy4K xLDQXb/3XbEg/GS+M62+AEDnSutJiHEwiK71ut77M5HxEAYmNYRu4UP+/xoL5HidWhAN TnhRXwKR2u9zhoO7sSnBUi+/9OsxndGtuc3OdB3rNR66+XA9wRNcjVybIFu4uB9R4Zbn UrSQ== X-Received: by 10.15.74.197 with SMTP id j45mr30005133eey.40.1382468958419; Tue, 22 Oct 2013 12:09:18 -0700 (PDT) Received: from localhost.localdomain (static-84-242-70-218.net.upcbroadband.cz. [84.242.70.218]) by mx.google.com with ESMTPSA id j7sm60174917eeo.15.2013.10.22.12.09.17 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 22 Oct 2013 12:09:17 -0700 (PDT) From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= To: dri-devel@lists.freedesktop.org Subject: [PATCH] drm/radeon: fix definition of WAIT_REG_MEM_OPERATION for CIK Date: Tue, 22 Oct 2013 21:09:13 +0200 Message-Id: <1382468953-24855-1-git-send-email-maraeo@gmail.com> X-Mailer: git-send-email 1.8.1.2 MIME-Version: 1.0 X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, 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: Marek Olšák Signed-off-by: Marek Olšák --- drivers/gpu/drm/radeon/cikd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/radeon/cikd.h b/drivers/gpu/drm/radeon/cikd.h index 203d2a0..cad6e8a 100644 --- a/drivers/gpu/drm/radeon/cikd.h +++ b/drivers/gpu/drm/radeon/cikd.h @@ -1626,7 +1626,7 @@ /* 0 - reg * 1 - mem */ -#define WAIT_REG_MEM_OPERATION(x) ((x) << 6) +#define WAIT_REG_MEM_OPERATION(x) ((x) << 5) /* 0 - wait_reg_mem * 1 - wr_wait_wr_reg */