These changes are the raw update to linux-4.4.6-rt14. Kernel sources
[kvmfornfv.git] / kernel / sound / pci / hda / hda_intel_trace.h
index 7b5e4c2..0922d8b 100644 (file)
@@ -7,52 +7,43 @@
 
 #include <linux/tracepoint.h>
 
-struct azx;
-struct azx_dev;
+DECLARE_EVENT_CLASS(hda_pm,
+       TP_PROTO(struct azx *chip),
 
-TRACE_EVENT(azx_pcm_trigger,
-
-       TP_PROTO(struct azx *chip, struct azx_dev *dev, int cmd),
-
-       TP_ARGS(chip, dev, cmd),
+       TP_ARGS(chip),
 
        TP_STRUCT__entry(
-               __field( int, card )
-               __field( int, idx )
-               __field( int, cmd )
+               __field(int, dev_index)
        ),
 
        TP_fast_assign(
-               __entry->card = (chip)->card->number;
-               __entry->idx = (dev)->index;
-               __entry->cmd = cmd;
+               __entry->dev_index = (chip)->dev_index;
        ),
 
-       TP_printk("[%d:%d] cmd=%d", __entry->card, __entry->idx, __entry->cmd)
+       TP_printk("card index: %d", __entry->dev_index)
 );
 
-TRACE_EVENT(azx_get_position,
-
-    TP_PROTO(struct azx *chip, struct azx_dev *dev, unsigned int pos, unsigned int delay),
-
-           TP_ARGS(chip, dev, pos, delay),
+DEFINE_EVENT(hda_pm, azx_suspend,
+       TP_PROTO(struct azx *chip),
+       TP_ARGS(chip)
+);
 
-       TP_STRUCT__entry(
-               __field( int, card )
-               __field( int, idx )
-               __field( unsigned int, pos )
-               __field( unsigned int, delay )
-       ),
+DEFINE_EVENT(hda_pm, azx_resume,
+       TP_PROTO(struct azx *chip),
+       TP_ARGS(chip)
+);
 
-       TP_fast_assign(
-               __entry->card = (chip)->card->number;
-               __entry->idx = (dev)->index;
-               __entry->pos = pos;
-               __entry->delay = delay;
-       ),
+#ifdef CONFIG_PM
+DEFINE_EVENT(hda_pm, azx_runtime_suspend,
+       TP_PROTO(struct azx *chip),
+       TP_ARGS(chip)
+);
 
-       TP_printk("[%d:%d] pos=%u, delay=%u", __entry->card, __entry->idx, __entry->pos, __entry->delay)
+DEFINE_EVENT(hda_pm, azx_runtime_resume,
+       TP_PROTO(struct azx *chip),
+       TP_ARGS(chip)
 );
+#endif
 
 #endif /* _TRACE_HDA_INTEL_H */