From patchwork Thu Nov 8 06:00:31 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Roese X-Patchwork-Id: 994657 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=denx.de Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 42rCM81fV8z9sBZ for ; Thu, 8 Nov 2018 17:00:48 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 63AD5C224AB; Thu, 8 Nov 2018 06:00:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 9C204C21DCA; Thu, 8 Nov 2018 06:00:41 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id B3B7FC21DCA; Thu, 8 Nov 2018 06:00:39 +0000 (UTC) Received: from mx2.mailbox.org (mx2.mailbox.org [80.241.60.215]) by lists.denx.de (Postfix) with ESMTPS id 6D73EC21C6A for ; Thu, 8 Nov 2018 06:00:39 +0000 (UTC) Received: from smtp1.mailbox.org (unknown [IPv6:2001:67c:2050:105:465:1:1:0]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by mx2.mailbox.org (Postfix) with ESMTPS id 57EC3A1168 for ; Thu, 8 Nov 2018 07:00:39 +0100 (CET) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id 4gShGxiPlSua for ; Thu, 8 Nov 2018 07:00:32 +0100 (CET) From: Stefan Roese To: u-boot@lists.denx.de Date: Thu, 8 Nov 2018 07:00:31 +0100 Message-Id: <20181108060031.20289-1-sr@denx.de> MIME-Version: 1.0 Subject: [U-Boot] [PATCH] fit: Add missing CR in debug output in fit_find_config_node() X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Testing has shown that a line-break is missing in one debug line in fit_find_config_node(). Signed-off-by: Stefan Roese --- common/common_fit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common_fit.c b/common/common_fit.c index c92d675a0b..3d90eef516 100644 --- a/common/common_fit.c +++ b/common/common_fit.c @@ -76,7 +76,7 @@ int fit_find_config_node(const void *fdt) } if (dflt_conf_node != -ENOENT) { - debug("Selecting default config '%s'", dflt_conf_desc); + debug("Selecting default config '%s'\n", dflt_conf_desc); return dflt_conf_node; }