From patchwork Tue Jan 11 12:19:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baidu Boy X-Patchwork-Id: 78360 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 7A09BB70DF for ; Tue, 11 Jan 2011 23:20:12 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1EA09280D5; Tue, 11 Jan 2011 13:20:11 +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 Un8njkRT-G3p; Tue, 11 Jan 2011 13:20:11 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 91547280D8; Tue, 11 Jan 2011 13:20:09 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2B0DB280D8 for ; Tue, 11 Jan 2011 13:20:08 +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 Vl1KbHzHMdHe for ; Tue, 11 Jan 2011 13:20:04 +0100 (CET) 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-yx0-f172.google.com (mail-yx0-f172.google.com [209.85.213.172]) by theia.denx.de (Postfix) with ESMTP id 059F2280D5 for ; Tue, 11 Jan 2011 13:20:01 +0100 (CET) Received: by yxt33 with SMTP id 33so8134876yxt.3 for ; Tue, 11 Jan 2011 04:20:01 -0800 (PST) Received: by 10.147.82.11 with SMTP id j11mr41474659yal.14.1294748401129; Tue, 11 Jan 2011 04:20:01 -0800 (PST) Received: from LENOVOE5CA6843 ([117.89.236.122]) by mx.google.com with ESMTPS id m49sm2776938yha.2.2011.01.11.04.19.57 (version=SSLv3 cipher=RC4-MD5); Tue, 11 Jan 2011 04:20:00 -0800 (PST) From: "Baidu Boy" To: Date: Tue, 11 Jan 2011 20:19:53 +0800 Message-ID: <000001cbb189$ddf50790$6401a8c0@LENOVOE5CA6843> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: AcuxidmpUlziO5L5Qheev8HDdklvpQ== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3350 Subject: [U-Boot] [PATCH] mpc8378emds: correct the CS0 setting 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: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de The original CS0 OR configuration sets the reserved field. This patch is to correct the setting. Signed-off-by: Baidu Boy --- include/configs/MPC837XEMDS.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/configs/MPC837XEMDS.h b/include/configs/MPC837XEMDS.h index c237991..8ddccec 100644 --- a/include/configs/MPC837XEMDS.h +++ b/include/configs/MPC837XEMDS.h @@ -242,7 +242,6 @@ | (2 << BR_PS_SHIFT) /* 16 bit port size */ \ | BR_V ) /* valid */ #define CONFIG_SYS_OR0_PRELIM ( (~(CONFIG_SYS_FLASH_SIZE - 1) << 20) \ - | OR_UPM_XAM \ | OR_GPCM_CSNT \ | OR_GPCM_ACS_DIV2 \ | OR_GPCM_XACS \