summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'src/tirtos/EventP_tirtos.c')
-rw-r--r--src/tirtos/EventP_tirtos.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tirtos/EventP_tirtos.c b/src/tirtos/EventP_tirtos.c
index 1af798e..2fac64a 100644
--- a/src/tirtos/EventP_tirtos.c
+++ b/src/tirtos/EventP_tirtos.c
@@ -35,6 +35,7 @@
35#include <ti/sysbios/knl/Event.h> 35#include <ti/sysbios/knl/Event.h>
36#include "EventP.h" 36#include "EventP.h"
37#include <xdc/runtime/Memory.h> 37#include <xdc/runtime/Memory.h>
38#include <ti/osal/src/tirtos/tirtos_config.h>
38 39
39/* 40/*
40 * ======== EventP_create ======== 41 * ======== EventP_create ========
@@ -46,7 +47,7 @@ EventP_Handle EventP_create(EventP_Params *params)
46 47
47 Event_Params_init(&eventParams); 48 Event_Params_init(&eventParams);
48 49
49 eventHandle = Event_create(&eventParams, NULL); 50 eventHandle = Event_create(&eventParams, NULL_PTR);
50 51
51 return ((EventP_Handle)eventHandle); 52 return ((EventP_Handle)eventHandle);
52} 53}