From patchwork Thu Sep 12 19:56:34 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 274602 X-Patchwork-Delegate: sbabic@denx.de 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 670342C0247 for ; Fri, 13 Sep 2013 05:57:15 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B91954A0A8; Thu, 12 Sep 2013 21:57:13 +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 AnjXIde8LHLT; Thu, 12 Sep 2013 21:57:13 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 90B324A07A; Thu, 12 Sep 2013 21:57:10 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4D9B14A07A for ; Thu, 12 Sep 2013 21:57:04 +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 njD-Ti21cstB for ; Thu, 12 Sep 2013 21:56:58 +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-vb0-f53.google.com (mail-vb0-f53.google.com [209.85.212.53]) by theia.denx.de (Postfix) with ESMTPS id 0CBD64A06E for ; Thu, 12 Sep 2013 21:56:50 +0200 (CEST) Received: by mail-vb0-f53.google.com with SMTP id i3so225070vbh.12 for ; Thu, 12 Sep 2013 12:56:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=MfwZzGIXaiiKhvwcC38DNvEG9KebAMCXv2Y1AvnxNkc=; b=qjNiSq/PS+Xy3KKm9uCBi2OoPmIrHov7wnatOyGa+9TcsEzULRmVzmns7euDPzQjph 36zLN1hFNUCZ+ozGTN3eqBFJzbdWvGpHgugrj3zFw8NP4NA1BplHvMhLEBJwDxJIm+/o jwhM1r3q2ExF3LKZ0K4JZUlfrsRZ3J7vtNzRiuXRHUqit8hy/phUmJVug7bDgukbBOki UWginDYejzUNk3iJGkEX8k9Qynt8kB7ZJg0tk0WEhILzUufLWANe2cy733clZ16DaLgY UqkVH2X6hkh7Uan9OQTskmcBLyFf8nRh9oemj7OsKfco0x9iogEJUheKijgxkNq8IFg1 nQiA== X-Received: by 10.220.75.73 with SMTP id x9mr77730vcj.38.1379015803826; Thu, 12 Sep 2013 12:56:43 -0700 (PDT) Received: from localhost.localdomain ([177.194.42.63]) by mx.google.com with ESMTPSA id f5sm5033536vdv.9.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 12 Sep 2013 12:56:43 -0700 (PDT) From: Fabio Estevam To: sbabic@denx.de Date: Thu, 12 Sep 2013 16:56:34 -0300 Message-Id: <1379015794-17715-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.8.1.2 Cc: Fabio Estevam , u-boot@lists.denx.de Subject: [U-Boot] [PATCH] mx35pdk: Remove CONFIG_SYS_CACHELINE_SIZE X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 From: Fabio Estevam In arch/arm/cpu/arm1136/cpu.c we have: #ifndef CONFIG_SYS_CACHELINE_SIZE #define CONFIG_SYS_CACHELINE_SIZE 32 #endif ,so there is no need to define 'CONFIG_SYS_CACHELINE_SIZE' with the default size in the board config file. Signed-off-by: Fabio Estevam --- include/configs/mx35pdk.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/mx35pdk.h b/include/configs/mx35pdk.h index 68b225a..a25b20e 100644 --- a/include/configs/mx35pdk.h +++ b/include/configs/mx35pdk.h @@ -23,7 +23,6 @@ /* Set TEXT at the beginning of the NOR flash */ #define CONFIG_SYS_TEXT_BASE 0xA0000000 -#define CONFIG_SYS_CACHELINE_SIZE 32 #define CONFIG_BOARD_EARLY_INIT_F #define CONFIG_BOARD_LATE_INIT