comparison gsm-fw/services/dar/dar_gbl_var.c @ 309:a7087f91c752

DAR: all C modules compile without RVM_DAR_SWE
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Mon, 17 Mar 2014 04:51:36 +0000
parents 4dccc9d3305f
children a2194416fd7c
comparison
equal deleted inserted replaced
308:3c5a17928fda 309:a7087f91c752
7 /* ---------------------------- */ 7 /* ---------------------------- */
8 /* These variables are stored in the .bss_dar section */ 8 /* These variables are stored in the .bss_dar section */
9 /* */ 9 /* */
10 /* Version 0.1 */ 10 /* Version 0.1 */
11 /* */ 11 /* */
12 /* Date Modification */ 12 /* Date Modification */
13 /* ------------------------------------ */ 13 /* ------------------------------------ */
14 /* 29 October 2001 Create */ 14 /* 29 October 2001 Create */
15 /* */ 15 /* */
16 /* Author Stephanie Gerthoux */ 16 /* Author Stephanie Gerthoux */
17 /* */ 17 /* */
18 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved*/ 18 /* (C) Copyright 2001 by Texas Instruments Incorporated, All Rights Reserved*/
19 /****************************************************************************/ 19 /****************************************************************************/
20 20
21 #include "rv/rv_defined_swe.h" 21 #include "../../riviera/rv/rv_defined_swe.h"
22 #ifdef RVM_DAR_SWE 22 #ifdef RVM_DAR_SWE
23 23
24 #include "rv/general.h" 24 #include "../../riviera/rv/general.h"
25 #include "rv/rv_general.h" 25 #include "../../riviera/rv/rv_general.h"
26 #include "dar/dar_api.h" 26 #include "dar_api.h"
27 #include "dar/dar_const_i.h" 27 #include "dar_const_i.h"
28 28
29 /**** Global variables ****/ 29 /**** Global variables ****/
30 /* Buffer used to save some parameters before a reset */ 30 /* Buffer used to save some parameters before a reset */
31 UINT8 dar_recovery_buffer[DAR_RECOVERY_DATA_MAX_BUFFER_SIZE]; 31 UINT8 dar_recovery_buffer[DAR_RECOVERY_DATA_MAX_BUFFER_SIZE];
32 32
41 41
42 /* Ram buffer that contains the Debug Unit register */ 42 /* Ram buffer that contains the Debug Unit register */
43 UINT32 debug_RAM[DEBUG_UNIT_WORD_SIZE]; 43 UINT32 debug_RAM[DEBUG_UNIT_WORD_SIZE];
44 44
45 #endif /* #ifdef RVM_DAR_SWE */ 45 #endif /* #ifdef RVM_DAR_SWE */
46