Merge tag 'v3.10.102' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / mmprofile_static_event.h
1 #ifndef __MMPROFILE_STATIC_EVENT_H__
2 #define __MMPROFILE_STATIC_EVENT_H__
3
4
5 typedef enum {
6 MMP_InvalidEvent = 0,
7 MMP_RootEvent = 1,
8 /* User defined static events begin */
9 MMP_TouchPanelEvent,
10 /* User defined static events end. */
11 MMP_MaxStaticEvent
12 } MMP_StaticEvents;
13
14 #ifdef MMPROFILE_INTERNAL
15 typedef struct {
16 MMP_StaticEvents event;
17 char *name;
18 MMP_StaticEvents parent;
19 } MMP_StaticEvent_t;
20
21 static MMP_StaticEvent_t MMProfileStaticEvents[] = {
22 {MMP_RootEvent, "Root_Event", MMP_InvalidEvent},
23 {MMP_TouchPanelEvent, "TouchPanel_Event", MMP_RootEvent},
24 };
25
26 #endif
27
28 #endif