From patchwork Fri Feb 10 00:25:07 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 140465 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 F10B7B6EEC for ; Fri, 10 Feb 2012 11:25:32 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2093228071; Fri, 10 Feb 2012 01:25:31 +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 A-gqc8VH1O9P; Fri, 10 Feb 2012 01:25:30 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 21FA728078; Fri, 10 Feb 2012 01:25:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 42EFD2807D for ; Fri, 10 Feb 2012 01:25:25 +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 nvfa7OYcf3sZ for ; Fri, 10 Feb 2012 01:25:24 +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 ESMTPS id 7205C28071 for ; Fri, 10 Feb 2012 01:25:22 +0100 (CET) Received: by yenm3 with SMTP id m3so1216962yen.3 for ; Thu, 09 Feb 2012 16:25:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=zT9ZTYppt/NYC1aYhKJ9pYPjdTPW4o5Tq7oF2+Jh53Y=; b=LUEcM4tNRls8stIu/psRDGUNcd7juF8lnBdCSNtGsrkcGd0ob/TdwowEPw8F2Cprsh zmPzanHPGkHaE4SjRm/juOJ9GtSABt2ecT2avOFefJm01wET4x3HExqomEGGgxf22jbS luaDFrLRecutHNIuK+MH8LBPl47VfcPd0CxGo= Received: by 10.236.123.109 with SMTP id u73mr5856370yhh.99.1328833521692; Thu, 09 Feb 2012 16:25:21 -0800 (PST) Received: from localhost.localdomain ([187.106.61.98]) by mx.google.com with ESMTPS id y12sm9721556ang.21.2012.02.09.16.25.18 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Feb 2012 16:25:20 -0800 (PST) From: Fabio Estevam To: u-boot@lists.denx.de Date: Thu, 9 Feb 2012 22:25:07 -0200 Message-Id: <1328833511-16824-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.7.1 Cc: Fabio Estevam Subject: [U-Boot] [PATCH 1/5] mx31pdk: Fix CONFIG_SYS_MEMTEST_END 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 CONFIG_SYS_MEMTEST_END should be higher than CONFIG_SYS_MEMTEST_START. Signed-off-by: Fabio Estevam --- include/configs/mx31pdk.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/mx31pdk.h b/include/configs/mx31pdk.h index 4da6020..49d440b 100644 --- a/include/configs/mx31pdk.h +++ b/include/configs/mx31pdk.h @@ -141,7 +141,7 @@ /* memtest works on */ #define CONFIG_SYS_MEMTEST_START 0x80000000 -#define CONFIG_SYS_MEMTEST_END 0x10000 +#define CONFIG_SYS_MEMTEST_END 0x80010000 /* default load address */ #define CONFIG_SYS_LOAD_ADDR 0x81000000