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 Hui X-Patchwork-Id: 3122 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 E1A5523F3F for ; Tue, 26 Jul 2011 08:24:58 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id A22DDA18203 for ; Tue, 26 Jul 2011 08:24:58 +0000 (UTC) Received: by qyk30 with SMTP id 30so122580qyk.11 for ; Tue, 26 Jul 2011 01:24:58 -0700 (PDT) Received: by 10.229.25.212 with SMTP id a20mr374846qcc.148.1311668698110; Tue, 26 Jul 2011 01:24:58 -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 hl14cs102830qcb; Tue, 26 Jul 2011 01:24:57 -0700 (PDT) Received: by 10.236.185.133 with SMTP id u5mr7217561yhm.138.1311668697335; Tue, 26 Jul 2011 01:24:57 -0700 (PDT) Received: from mail-gx0-f178.google.com (mail-gx0-f178.google.com [209.85.161.178]) by mx.google.com with ESMTPS id d42si743229yhn.71.2011.07.26.01.24.56 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 26 Jul 2011 01:24:56 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.161.178 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) client-ip=209.85.161.178; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.161.178 is neither permitted nor denied by best guess record for domain of jason.hui@linaro.org) smtp.mail=jason.hui@linaro.org Received: by gxk8 with SMTP id 8so104168gxk.37 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 Cc: sbabic@denx.de Subject: [PATCH] mx53: use CONFIG_SYS_L2CACHE_OFF in config file 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 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