Blame view

kernel/linux-rt-4.4.41/sound/pci/hda/hda_intel_trace.h 994 Bytes
5113f6f70   김현기   kernel add
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
  #undef TRACE_SYSTEM
  #define TRACE_SYSTEM hda_intel
  #define TRACE_INCLUDE_FILE hda_intel_trace
  
  #if !defined(_TRACE_HDA_INTEL_H) || defined(TRACE_HEADER_MULTI_READ)
  #define _TRACE_HDA_INTEL_H
  
  #include <linux/tracepoint.h>
  
  DECLARE_EVENT_CLASS(hda_pm,
  	TP_PROTO(struct azx *chip),
  
  	TP_ARGS(chip),
  
  	TP_STRUCT__entry(
  		__field(int, dev_index)
  	),
  
  	TP_fast_assign(
  		__entry->dev_index = (chip)->dev_index;
  	),
  
  	TP_printk("card index: %d", __entry->dev_index)
  );
  
  DEFINE_EVENT(hda_pm, azx_suspend,
  	TP_PROTO(struct azx *chip),
  	TP_ARGS(chip)
  );
  
  DEFINE_EVENT(hda_pm, azx_resume,
  	TP_PROTO(struct azx *chip),
  	TP_ARGS(chip)
  );
  
  #ifdef CONFIG_PM
  DEFINE_EVENT(hda_pm, azx_runtime_suspend,
  	TP_PROTO(struct azx *chip),
  	TP_ARGS(chip)
  );
  
  DEFINE_EVENT(hda_pm, azx_runtime_resume,
  	TP_PROTO(struct azx *chip),
  	TP_ARGS(chip)
  );
  #endif
  
  #endif /* _TRACE_HDA_INTEL_H */
  
  /* This part must be outside protection */
  #undef TRACE_INCLUDE_PATH
  #define TRACE_INCLUDE_PATH .
  #include <trace/define_trace.h>