# HG changeset patch # User Michael Spacefalcon # Date 1404953674 0 # Node ID 78495749970a2eeb8b246ea0a9b28ab723bb348b # Parent cb38dc8aed39cbe340c45643183841a743fabbb7 gsm-fw: Riviera memory pool moved from ext.bss to ext.ram diff -r cb38dc8aed39 -r 78495749970a gsm-fw/riviera/rvf/rvf_mem_pool.c --- a/gsm-fw/riviera/rvf/rvf_mem_pool.c Wed Jul 02 04:00:01 2014 +0000 +++ b/gsm-fw/riviera/rvf/rvf_mem_pool.c Thu Jul 10 00:54:34 2014 +0000 @@ -4,14 +4,14 @@ /* */ /* Function this file contains the definition of main memory pool */ /* */ -/* Version 0.1 */ -/* */ -/* Date Modification */ -/* ------------------------------------ */ -/* 06/08/02 Create */ -/* */ -/* Author Laurent Sollier (l-sollier@ti.com) */ -/* */ +/* Version 0.1 */ +/* */ +/* Date Modification */ +/* ------------------------------------ */ +/* 06/08/02 Create */ +/* */ +/* Author Laurent Sollier (l-sollier@ti.com) */ +/* */ /* (C) Copyright 2002 by Texas Instruments Incorporated, All Rights Reserved*/ /****************************************************************************/ @@ -24,10 +24,10 @@ /* allocated static buffer pools */ -UINT8 Buf0[RVF_POOL_0_SIZE]; +UINT8 Buf0[RVF_POOL_0_SIZE] __attribute__ ((section ("ext.ram"))); #if (RVF_NB_POOLS > 1) -UINT8 Buf1[RVF_POOL_1_SIZE]; +UINT8 Buf1[RVF_POOL_1_SIZE] __attribute__ ((section ("int.ram"))); #endif /*******************************************************************************