From patchwork Tue Jul 26 08:25:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Liu X-Patchwork-Id: 106794 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 A5253B70C1 for ; Tue, 26 Jul 2011 18:25:07 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 464882809E; Tue, 26 Jul 2011 10:25:05 +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 SS++-CrTLYic; Tue, 26 Jul 2011 10:25:05 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3F6A028099; Tue, 26 Jul 2011 10:25:02 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C9FD528099 for ; Tue, 26 Jul 2011 10:24:59 +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 6i7QAtjpM83k for ; Tue, 26 Jul 2011 10:24:59 +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-gx0-f172.google.com (mail-gx0-f172.google.com [209.85.161.172]) by theia.denx.de (Postfix) with ESMTPS id 0642B28096 for ; Tue, 26 Jul 2011 10:24:57 +0200 (CEST) Received: by gxk19 with SMTP id 19so91407gxk.3 for ; Tue, 26 Jul 2011 01:24:56 -0700 (PDT) Received: by 10.142.178.3 with SMTP id a3mr3631906wff.291.1311668695711; Tue, 26 Jul 2011 01:24:55 -0700 (PDT) Received: from localhost.localdomain ([116.226.227.150]) by mx.google.com with ESMTPS id m7sm322619pbk.22.2011.07.26.01.24.49 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 26 Jul 2011 01:24:54 -0700 (PDT) From: Jason Liu To: u-boot@lists.denx.de Date: Tue, 26 Jul 2011 16:25:50 +0800 Message-Id: <1311668750-5471-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.0.4 Subject: [U-Boot] [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file 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 CONFIG_L2_OFF is obsolete after the following commit: e47f2db5371047eb9bcd115fee084e6a8a92a239 armv7: rename cache related CONFIG flags Replace the cache related CONFIG flags with more meaningful names. Following are the changes: CONFIG_L2_OFF -> CONFIG_SYS_L2CACHE_OFF But the above commit does not clean up all the mx53 board config file. This patch does it by using CONFIG_SYS_L2CACHE_OFF instead of _L2_OFF Signed-off-by: Jason Liu Cc:Stefano Babic --- include/configs/mx53ard.h | 2 +- include/configs/mx53loco.h | 2 +- include/configs/mx53smd.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/mx53ard.h b/include/configs/mx53ard.h index c872510..0e323e6 100644 --- a/include/configs/mx53ard.h +++ b/include/configs/mx53ard.h @@ -29,7 +29,7 @@ #define CONFIG_DISPLAY_CPUINFO #define CONFIG_DISPLAY_BOARDINFO -#define CONFIG_L2_OFF +#define CONFIG_SYS_L2CACHE_OFF #include diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 544e3fb..bc1b401 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -30,7 +30,7 @@ #define CONFIG_DISPLAY_CPUINFO #define CONFIG_DISPLAY_BOARDINFO -#define CONFIG_L2_OFF +#define CONFIG_SYS_L2CACHE_OFF #include diff --git a/include/configs/mx53smd.h b/include/configs/mx53smd.h index 65d5e05..194047b 100644 --- a/include/configs/mx53smd.h +++ b/include/configs/mx53smd.h @@ -29,7 +29,7 @@ #define CONFIG_DISPLAY_CPUINFO #define CONFIG_DISPLAY_BOARDINFO -#define CONFIG_L2_OFF +#define CONFIG_SYS_L2CACHE_OFF #include