From patchwork Tue Jul 26 08:17:01 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Hui X-Patchwork-Id: 3123 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id D02C423F3F for ; Tue, 26 Jul 2011 08:33:42 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id 97E1EA180CA for ; Tue, 26 Jul 2011 08:33:42 +0000 (UTC) Received: by qyk10 with SMTP id 10so1605348qyk.11 for ; Tue, 26 Jul 2011 01:33:42 -0700 (PDT) Received: by 10.229.1.217 with SMTP id 25mr1789816qcg.38.1311669222024; Tue, 26 Jul 2011 01:33:42 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs103132qcb; Tue, 26 Jul 2011 01:33:41 -0700 (PDT) Received: by 10.68.27.41 with SMTP id q9mr8761921pbg.337.1311669221035; Tue, 26 Jul 2011 01:33:41 -0700 (PDT) Received: from jason-laptop ([116.226.227.150]) by mx.google.com with ESMTP id f4si959606wfh.46.2011.07.26.01.33.38; Tue, 26 Jul 2011 01:33:41 -0700 (PDT) Received-SPF: neutral (google.com: 116.226.227.150 is neither permitted nor denied by best guess record for domain of jason@jason-laptop) client-ip=116.226.227.150; Authentication-Results: mx.google.com; spf=neutral (google.com: 116.226.227.150 is neither permitted nor denied by best guess record for domain of jason@jason-laptop) smtp.mail=jason@jason-laptop Received: by jason-laptop (Postfix, from userid 1000) id 271A245373; Tue, 26 Jul 2011 16:17:21 +0800 (CST) From: Jason Liu To: u-boot@lists.denx.de Cc: sbabic@denx.de Subject: [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file Date: Tue, 26 Jul 2011 16:17:01 +0800 Message-Id: <1311668221-5209-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.0.4 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