changeset 516:78495749970a

gsm-fw: Riviera memory pool moved from ext.bss to ext.ram
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Thu, 10 Jul 2014 00:54:34 +0000
parents cb38dc8aed39
children eafadfee35b2
files gsm-fw/riviera/rvf/rvf_mem_pool.c
diffstat 1 files changed, 10 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- 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
 
 /*******************************************************************************