changeset 622:8b07fb500d36

L1 standalone: PEIs hooked into gpf/conf/barecomp.c
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 31 Aug 2014 02:16:30 +0000
parents aa93994e9f63
children f5243fa2d2b9
files gsm-fw/gpf/conf/barecomp.c
diffstat 1 files changed, 12 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/gsm-fw/gpf/conf/barecomp.c	Sun Aug 31 00:28:01 2014 +0000
+++ b/gsm-fw/gpf/conf/barecomp.c	Sun Aug 31 02:16:30 2014 +0000
@@ -38,8 +38,9 @@
 extern SHORT tstrcv_pei_create(T_PEI_INFO const **Info);
 extern SHORT tstsnd_pei_create(T_PEI_INFO const **Info);
 
-#if CONFIG_GSM
-extern SHORT l1_pei_create    (T_PEI_INFO const **Info);
+#if CONFIG_L1_STANDALONE
+extern SHORT l1_pei_create          (T_PEI_INFO const **Info);
+extern SHORT l1stand_fwd_pei_create (T_PEI_INFO const **info);
 #endif
 
 /*==== VARIABLES ==================================================*/
@@ -68,7 +69,13 @@
   { NULL,                NULL,   0 }
 };
 
-#if CONFIG_GSM
+#if CONFIG_L1_STANDALONE
+const T_COMPONENT_ADDRESS l1fwd_list[] =
+{
+  { l1stand_fwd_pei_create, NULL,   ASSIGNED_BY_TI },
+  { NULL,                   NULL,   0 }
+};
+
 const T_COMPONENT_ADDRESS l1_list[] =
 {
   { l1_pei_create,       NULL,   ASSIGNED_BY_TI },
@@ -80,7 +87,8 @@
 {
   tstrcv_list,
   tstsnd_list,
-#if CONFIG_GSM
+#if CONFIG_L1_STANDALONE
+  l1fwd_list,
   l1_list,
 #endif
   NULL