[U-Boot] [PATCH] TI DaVinci: Remove references to SZ_xx

Wolfgang Denk wd at denx.de
Tue Sep 8 20:50:57 CEST 2009


Dear s-paulraj at ti.com,

In message <1252434246-19517-1-git-send-email-s-paulraj at ti.com> you wrote:
> From: Sandeep Paulraj <s-paulraj at ti.com>
> 
> This patch removes the asm/sizes.h header file from being
> included in the DaVinci SOC configs.
> References to SZ_xx have been replaced by appropriate
> bit shifted values.
> 
> Signed-off-by: Sandeep Paulraj <s-paulraj at ti.com>

Note that this patch actually changes the configuration:

> --- a/include/configs/davinci_dm355evm.h
> +++ b/include/configs/davinci_dm355evm.h
...
>  /* U-Boot memory configuration */
> -#define CONFIG_STACKSIZE		SZ_256K		/* regular stack */
> -#define CONFIG_SYS_MALLOC_LEN		SZ_512K		/* malloc() arena */
> +#define CONFIG_STACKSIZE		(256 << 10)	/* 256 KiB */
> +#define CONFIG_SYS_MALLOC_LEN		(1 << 20)	/* 1 MiB*/

as it increases the malloc() arena size form 512 to 1024 KiB.

Assuming this was done intentionally:

Acked-by: Wolfgang Denk <wd at denx.de>

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Work 8 hours, sleep 8 hours; but not the same 8 hours.


More information about the U-Boot mailing list