From patchwork Wed Sep 12 15:17:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Daniel J Blueman X-Patchwork-Id: 1446371 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id AACDA3FE79 for ; Wed, 12 Sep 2012 20:01:34 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AAFE89EF5D for ; Wed, 12 Sep 2012 13:01:34 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-oa0-f49.google.com (mail-oa0-f49.google.com [209.85.219.49]) by gabe.freedesktop.org (Postfix) with ESMTP id AE1719E9DD for ; Wed, 12 Sep 2012 08:17:30 -0700 (PDT) Received: by oagh1 with SMTP id h1so1107251oag.36 for ; Wed, 12 Sep 2012 08:17:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=V0t7rs08TB/IeIBflC0dPgiMBcACnhAhBXxr0U7Xyz4=; b=AS2bEMfxy2kZhkG3CBf3JSRRmrn2DNQX3OnbSaiJ3qdIG5KoQ4lMSHfsfS89swS4f2 5/rYA153XxMtG2iTV6bKIzVEec8QGsZUVBRCtsyIiRAyF+m4X51ImIcj3jbwOdbYRDT0 YxaErhgnho9YYn49siUcfrgflH/NLRwzxS53wcVHT0kQfif5J3IAR14bKIPbGc+NqNHe +TwdBW25VmZXipJ44e2aykc4EA5my35ABaMabwqVTLRn+FKfGT8iu1j3D7pcU2sjfGy8 XD42xlsxZAy+rSd3vKdK4ZHMPM5ciSq7CdqbQoCcFVZl2+F7CkGKSiHazt8Fw0E7nT1i wu1A== Received: by 10.182.144.68 with SMTP id sk4mr23243305obb.0.1347463049956; Wed, 12 Sep 2012 08:17:29 -0700 (PDT) Received: from localhost.localdomain (bb121-6-235-231.singnet.com.sg. [121.6.235.231]) by mx.google.com with ESMTPS id l9sm16408168oeg.3.2012.09.12.08.17.27 (version=SSLv3 cipher=OTHER); Wed, 12 Sep 2012 08:17:29 -0700 (PDT) From: Daniel J Blueman To: David Airlie Subject: [PATCH] nouveau: Fix kernel log mangling Date: Wed, 12 Sep 2012 23:17:08 +0800 Message-Id: <1347463028-3127-1-git-send-email-daniel@quora.org> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQmrIGCJfERRE5D/4bfZA7Sryyq/vvkazjwFNmQyds3YwgqVIAW8VsS5FvhpCUkLaN1QBDnE X-Mailman-Approved-At: Wed, 12 Sep 2012 13:00:04 -0700 Cc: Daniel J Blueman , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org 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: , MIME-Version: 1.0 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 Add missing newline to prevent the following kernel log line getting appended to the currnet one. Signed-off-by: Daniel J Blueman --- drivers/gpu/drm/nouveau/nouveau_dp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_dp.c b/drivers/gpu/drm/nouveau/nouveau_dp.c index 7e289d2..2a9294f 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dp.c +++ b/drivers/gpu/drm/nouveau/nouveau_dp.c @@ -61,7 +61,7 @@ auxch_init(struct drm_device *dev, int ch) ctrl = nv_rd32(dev, 0x00e4e4 + (ch * 0x50)); udelay(1); if (!timeout--) { - AUX_ERR("begin idle timeout 0x%08x", ctrl); + AUX_ERR("begin idle timeout 0x%08x\n", ctrl); return -EBUSY; } } while (ctrl & 0x03010000);