From patchwork Wed Jan 22 09:23:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Simek X-Patchwork-Id: 313178 X-Patchwork-Delegate: monstr@monstr.eu 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 916EB2C0089 for ; Wed, 22 Jan 2014 20:24:25 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 20B974B38F; Wed, 22 Jan 2014 10:24:19 +0100 (CET) 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 4Eau-RpMF+bY; Wed, 22 Jan 2014 10:24:18 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B8FA84B522; Wed, 22 Jan 2014 10:23:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CB8C34B35E for ; Wed, 22 Jan 2014 10:23:50 +0100 (CET) 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 IcxAOBKscOia for ; Wed, 22 Jan 2014 10:23:46 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 BL_NJABL=ERR(-1.5) (only DNSBL check requested) Received: from mail-ea0-f177.google.com (mail-ea0-f177.google.com [209.85.215.177]) by theia.denx.de (Postfix) with ESMTPS id 2CDAB4B370 for ; Wed, 22 Jan 2014 10:23:32 +0100 (CET) Received: by mail-ea0-f177.google.com with SMTP id n15so4425356ead.36 for ; Wed, 22 Jan 2014 01:23:32 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:from:to:subject:date:message-id :content-type; bh=6zKXadQpbP8pgfxhRG3+RQNVSeM/0IiotgEV0npBGVo=; b=QHDsDyDQkyuig+ATfIZPp+df1c69oNCXQ4LQ5/n/pGmpgG+PIUPXrug3GP+OC4JhRz mU/3wLe+TnM5ty6CI4MaBzQ7ym4yXsL6vjFAjRUR2ygfkyjlkVl67Nqj/LyJlpyaxGVd dsfliiq/EHlZdLprOQYi1yvPwHnsJfY+4ceK90adITkulvQGkcj1JRmV73ni/+YTjFPg tXDkQW7K813eCh0DIzzPjzuBJd+rDDakD77SFAYQAEHyE5r4WKI2+/CVShzvGmO7Dojq Eh2rPdeoirwalq9skj2zzm8mmDJppuKSosaFMTILlPgHQGZP6OovXgBPL2XvgMpCbLAG 3vOA== X-Gm-Message-State: ALoCoQlO50bZ143g3iOddCoFFyWZRGJVBvuUFgvvSIFXbohQ9oTQOTdKhtm58bXPX8hAlzMG/10U X-Received: by 10.14.203.7 with SMTP id e7mr455331eeo.58.1390382612089; Wed, 22 Jan 2014 01:23:32 -0800 (PST) Received: from localhost (nat-63.starnet.cz. [178.255.168.63]) by mx.google.com with ESMTPSA id u7sm24797557eep.11.2014.01.22.01.23.30 for (version=TLSv1.1 cipher=RC4-SHA bits=128/128); Wed, 22 Jan 2014 01:23:31 -0800 (PST) From: Michal Simek To: u-boot@lists.denx.de, Albert Aribaud Date: Wed, 22 Jan 2014 10:23:23 +0100 Message-Id: <8aecdcac9defb51a46a2bb2d5a350aae304d38a3.1390382565.git.michal.simek@xilinx.com> X-Mailer: git-send-email 1.8.2.3 Subject: [U-Boot] [PATCH 1/7] zynq: Do not explicitely enable icache 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 icache is already enabled by default. Signed-off-by: Michal Simek Acked-by: Jagannadha Sutradharudu Teki --- board/xilinx/zynq/board.c | 2 -- 1 file changed, 2 deletions(-) -- 1.8.2.3 diff --git a/board/xilinx/zynq/board.c b/board/xilinx/zynq/board.c index a5b9bde..08932a2 100644 --- a/board/xilinx/zynq/board.c +++ b/board/xilinx/zynq/board.c @@ -55,8 +55,6 @@ int board_init(void) } #endif - icache_enable(); - #ifdef CONFIG_FPGA fpga_init(); fpga_add(fpga_xilinx, &fpga);