From patchwork Sat Oct 20 10:32:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 1621041 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 9ED9340135 for ; Sat, 20 Oct 2012 10:38:26 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4792D9E8C1 for ; Sat, 20 Oct 2012 03:38:26 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.17.9]) by gabe.freedesktop.org (Postfix) with ESMTP id 8B3139E830 for ; Sat, 20 Oct 2012 03:38:12 -0700 (PDT) Received: from mailbox.adnet.avionic-design.de (mailbox.avionic-design.de [109.75.18.3]) by mrelayeu.kundenserver.de (node=mreu1) with ESMTP (Nemesis) id 0LipzN-1Su1MZ2UwP-00dWe6; Sat, 20 Oct 2012 12:32:54 +0200 Received: from localhost (localhost [127.0.0.1]) by mailbox.adnet.avionic-design.de (Postfix) with ESMTP id F0EED2A28320; Sat, 20 Oct 2012 12:32:53 +0200 (CEST) X-Virus-Scanned: amavisd-new at avionic-design.de Received: from mailbox.adnet.avionic-design.de ([127.0.0.1]) by localhost (mailbox.avionic-design.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gd+SnwnAfMim; Sat, 20 Oct 2012 12:32:52 +0200 (CEST) Received: from localhost (avionic-0098.adnet.avionic-design.de [172.20.31.233]) (Authenticated sender: thierry.reding) by mailbox.adnet.avionic-design.de (Postfix) with ESMTPA id 959432A282B0; Sat, 20 Oct 2012 12:32:52 +0200 (CEST) From: Thierry Reding To: David Airlie Subject: [PATCH 1/2] drm: fb: cma: Fix typo in debug message Date: Sat, 20 Oct 2012 12:32:46 +0200 Message-Id: <1350729172-12506-1-git-send-email-thierry.reding@avionic-design.de> X-Mailer: git-send-email 1.7.12.4 X-Provags-ID: V02:K0:XYlM700aHycn2imsKhi7YQfMTU4DoNF63xmUqiH4mdP v9bHwwY4lj1qTGTW+rsubSEvcek3Fud8Ta3/UyzoDTmyz8uneq MaQXBGp0XZ3RrfPRVNER5rAVUtS43gwkqHEWSVV30MAVqAXl0I fN04X8S76bPQvqxbIFQs5KTyLVe4+d9xxsEykgWV6/HJ1nTczB NakTV2mjwPjBquBdBez3lcyAl/iG/kPNsDiXJfF+vJFra5KhZ1 Ob6Puv/NLPssRrkWhaLuviid6Q1PdXPFcsZvb1497lsJ2snVjf ZNiwYwZz5g8oIAbbJKI0L+iy0ewzIjHqn2MEb9aIkU9LSFRtc3 /ka5avIky9sm56b8aXLcCs4O9YnTIQc0/evAy37tmUb8bv9Kmc TySun469fpDIRxekexdidjVLmgVDWCCgqTt2QwFZwEjpIgloD1 L55nn Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Laurent Pinchart 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 The debug message showing the resolution of a framebuffer to be allocated is missing a closing parenthesis. Signed-off-by: Thierry Reding --- drivers/gpu/drm/drm_fb_cma_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/drm_fb_cma_helper.c b/drivers/gpu/drm/drm_fb_cma_helper.c index 09e11a5..d6c80a3 100644 --- a/drivers/gpu/drm/drm_fb_cma_helper.c +++ b/drivers/gpu/drm/drm_fb_cma_helper.c @@ -206,7 +206,7 @@ static int drm_fbdev_cma_create(struct drm_fb_helper *helper, size_t size; int ret; - DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d\n", + DRM_DEBUG_KMS("surface width(%d), height(%d) and bpp(%d)\n", sizes->surface_width, sizes->surface_height, sizes->surface_bpp);