From patchwork Tue Mar 29 10:15:38 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gray Remlin X-Patchwork-Id: 88742 X-Patchwork-Delegate: albert.aribaud@free.fr Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 2B351B6F06 for ; Tue, 29 Mar 2011 21:12:47 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4FA5028093; Tue, 29 Mar 2011 12:12:45 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QkceYX50PA4q; Tue, 29 Mar 2011 12:12:44 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2CCA128088; Tue, 29 Mar 2011 12:12:43 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 03C9928088 for ; Tue, 29 Mar 2011 12:12:41 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id w+-XBlkGvIGh for ; Tue, 29 Mar 2011 12:12:40 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-wy0-f172.google.com (mail-wy0-f172.google.com [74.125.82.172]) by theia.denx.de (Postfix) with ESMTPS id 04C2028084 for ; Tue, 29 Mar 2011 12:12:38 +0200 (CEST) Received: by wyb29 with SMTP id 29so4773wyb.3 for ; Tue, 29 Mar 2011 03:12:38 -0700 (PDT) Received: by 10.216.82.68 with SMTP id n46mr136335wee.57.1301393558033; Tue, 29 Mar 2011 03:12:38 -0700 (PDT) Received: from localhost.localdomain ([149.254.182.104]) by mx.google.com with ESMTPS id t5sm1843746wes.9.2011.03.29.03.12.34 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 29 Mar 2011 03:12:37 -0700 (PDT) From: Gray Remlin To: albert.aribaud@free.fr Date: Tue, 29 Mar 2011 11:15:38 +0100 Message-Id: <1301393738-17625-1-git-send-email-gryrmln@gmail.com> X-Mailer: git-send-email 1.7.4 Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH] ARM: Correct CONFIG_(SYS_)CONSOLE_INFO_QUIET rename ommissions X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Correct some ommissions of renaming CONFIG_CONSOLE_INFO_QUIET to CONFIG_SYS_CONSOLE_INFO_QUIET Signed-off-by: Gray Remlin Tested-by: Albert ARIBAUD --- include/configs/edminiv2.h | 2 +- include/configs/km_arm.h | 2 +- include/configs/mv-common.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h index a75f06a..7d55db8 100644 --- a/include/configs/edminiv2.h +++ b/include/configs/edminiv2.h @@ -209,7 +209,7 @@ /* * Other required minimal configurations */ -#define CONFIG_CONSOLE_INFO_QUIET /* some code reduction */ +#define CONFIG_SYS_CONSOLE_INFO_QUIET /* Suppress console details at boot */ #define CONFIG_ARCH_CPU_INIT /* call arch_cpu_init() */ #define CONFIG_ARCH_MISC_INIT /* call arch_misc_init() */ #define CONFIG_DISPLAY_CPUINFO /* Display cpu info */ diff --git a/include/configs/km_arm.h b/include/configs/km_arm.h index bf77cc0..f5c7f53 100644 --- a/include/configs/km_arm.h +++ b/include/configs/km_arm.h @@ -112,7 +112,7 @@ /* * Other required minimal configurations */ -#define CONFIG_CONSOLE_INFO_QUIET /* some code reduction */ +#define CONFIG_SYS_CONSOLE_INFO_QUIET /* Suppress console details at boot */ #define CONFIG_ARCH_CPU_INIT /* call arch_cpu_init() */ #define CONFIG_ARCH_MISC_INIT /* call arch_misc_init() */ #define CONFIG_DISPLAY_CPUINFO /* Display cpu info */ diff --git a/include/configs/mv-common.h b/include/configs/mv-common.h index a8937dd..0cf6f1f 100644 --- a/include/configs/mv-common.h +++ b/include/configs/mv-common.h @@ -101,7 +101,7 @@ #define CONFIG_SYS_LONGHELP #define CONFIG_AUTO_COMPLETE #define CONFIG_CMDLINE_EDITING -#define CONFIG_CONSOLE_INFO_QUIET /* some code reduction */ +#define CONFIG_SYS_CONSOLE_INFO_QUIET /* Suppress console details at boot */ #define CONFIG_ARCH_CPU_INIT /* call arch_cpu_init() */ #define CONFIG_ARCH_MISC_INIT /* call arch_misc_init() */ #define CONFIG_BOARD_EARLY_INIT_F /* call board_init_f for early inits */