From patchwork Sat May 12 23:40:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Otavio Salvador X-Patchwork-Id: 158792 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 9FA38B700C for ; Sun, 13 May 2012 09:38:44 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3160D2819C; Sun, 13 May 2012 01:38:41 +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 ghkcpviNi3DS; Sun, 13 May 2012 01:38:40 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E14F62818F; Sun, 13 May 2012 01:38:37 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A1FA728191 for ; Sun, 13 May 2012 01:38:34 +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 7dvPFoMyNt2U for ; Sun, 13 May 2012 01:38:33 +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-f44.google.com (mail-vb0-f44.google.com [209.85.212.44]) by theia.denx.de (Postfix) with ESMTPS id 479852818B for ; Sun, 13 May 2012 01:38:32 +0200 (CEST) Received: by vbbez10 with SMTP id ez10so3859859vbb.3 for ; Sat, 12 May 2012 16:38:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=23uNEkgqi9eLEbjjfeo5HrSelQV+VkQfbJ73P8VvDy8=; b=zZkG5jrUMcSNtxrg5eH4V61vDlNLSx3CFDyifE8kOuwcuo7Y0VYV2FX7fc6MPFubYN 3VXRuL5JX/a9ICaxHUNe6Fnqj1edSVnq1G9OWxPE3eyetGJBfsDYa75Gz7vtIsRmtP9/ LNupQLsS0Sm+OTpbrBkmAm8M2RqBhLfhsn0tozkz936p1Lb6jAmPpVBh2siqDUlgjNKg Mqaaa3JpZ5m8Qrn+X4tvtvmy3cwAB1b8KAHZlKDxd2yfC1IKMxdGUihxQ+YI+S2JZXN4 oOlxiBqKmRZSpxy3FN8S9Cm4aexpi5NKVtnqHt5M9pjhYEtXZNx3TgsgXGX851JA9HDF mnPA== Received: by 10.52.34.165 with SMTP id a5mr1352661vdj.79.1336865910978; Sat, 12 May 2012 16:38:30 -0700 (PDT) Received: from micro.lab.ossystems.com.br.lab.ossystems.com.br ([186.218.100.214]) by mx.google.com with ESMTPS id df14sm16840602vdb.18.2012.05.12.16.38.29 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 12 May 2012 16:38:30 -0700 (PDT) From: Otavio Salvador To: u-boot@lists.denx.de Date: Sat, 12 May 2012 20:40:11 -0300 Message-Id: <1336866018-614-2-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 1.7.10 In-Reply-To: <1336866018-614-1-git-send-email-otavio@ossystems.com.br> References: <1336866018-614-1-git-send-email-otavio@ossystems.com.br> Subject: [U-Boot] [PATCH 1/8] m28evk: use same notation to alloc the 128kB stack 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 Signed-off-by: Otavio Salvador Acked-by: Wolfgang Denk --- include/configs/m28evk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h index c62f4d0..7472ddc 100644 --- a/include/configs/m28evk.h +++ b/include/configs/m28evk.h @@ -88,7 +88,7 @@ #define CONFIG_NR_DRAM_BANKS 1 /* 1 bank of DRAM */ #define PHYS_SDRAM_1 0x40000000 /* Base address */ #define PHYS_SDRAM_1_SIZE 0x20000000 /* Max 512 MB RAM */ -#define CONFIG_STACKSIZE 0x00010000 /* 128 KB stack */ +#define CONFIG_STACKSIZE (128 * 1024) /* 128 KB stack */ #define CONFIG_SYS_MALLOC_LEN 0x00400000 /* 4 MB for malloc */ #define CONFIG_SYS_GBL_DATA_SIZE 128 /* Initial data */ #define CONFIG_SYS_MEMTEST_START 0x40000000 /* Memtest start adr */