From patchwork Fri Feb 10 00:25:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 140469 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 00227B6F13 for ; Fri, 10 Feb 2012 11:26:12 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C5EA4280AC; Fri, 10 Feb 2012 01:25:54 +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 lnNMmhHGV3lz; Fri, 10 Feb 2012 01:25:54 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 55A4B280AD; Fri, 10 Feb 2012 01:25:46 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D38E928090 for ; Fri, 10 Feb 2012 01:25:43 +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 yljQa7X1CY5j for ; Fri, 10 Feb 2012 01:25:43 +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 755E828099 for ; Fri, 10 Feb 2012 01:25:33 +0100 (CET) Received: by mail-yx0-f172.google.com with SMTP id m3so1216962yen.3 for ; Thu, 09 Feb 2012 16:25:33 -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:in-reply-to:references; bh=6/bnCsQvUDYgrAaycqhc6pUXhVNtraq7yL2XYschmVY=; b=pBN1p01iKAXrTGeEAu2L8rm7d3i3usjiLBMcZ4XLtFudYFjMNOK4agH8tGgq6TFkt7 B3yAWbft1QmNtWnvyQ75PqoHqo+jMssGuCUCadQDImGUKTELrO4Gi2zYQ61d3DUth6wp wupvM7TnCiOYwBGc6Zs2VR+jqBbN262D/tZJw= Received: by 10.236.123.72 with SMTP id u48mr5836897yhh.77.1328833532952; Thu, 09 Feb 2012 16:25:32 -0800 (PST) Received: from localhost.localdomain ([187.106.61.98]) by mx.google.com with ESMTPS id y12sm9721556ang.21.2012.02.09.16.25.30 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Feb 2012 16:25:32 -0800 (PST) From: Fabio Estevam To: u-boot@lists.denx.de Date: Thu, 9 Feb 2012 22:25:11 -0200 Message-Id: <1328833511-16824-5-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1328833511-16824-1-git-send-email-festevam@gmail.com> References: <1328833511-16824-1-git-send-email-festevam@gmail.com> Cc: Fabio Estevam Subject: [U-Boot] [PATCH 5/5] efikamx: 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. Cc: Marek Vasut Signed-off-by: Fabio Estevam Acked-by: Marek Vasut Tested-by: Marek Vasut --- include/configs/efikamx.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/efikamx.h b/include/configs/efikamx.h index e2f0f74..af542fa 100644 --- a/include/configs/efikamx.h +++ b/include/configs/efikamx.h @@ -240,7 +240,7 @@ #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */ #define CONFIG_SYS_MEMTEST_START 0x90000000 -#define CONFIG_SYS_MEMTEST_END 0x10000 +#define CONFIG_SYS_MEMTEST_END 0x90010000 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR