-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Takashi Iwai
committed
Oct 30, 2012
1 parent
5e6b275
commit e6f12db
Showing
4 changed files
with
72 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4ee3bffca4fad13a4cb672158dce0def41ab3a54 | ||
refs/heads/master: 1a8506d4402b6e96c2ed778dc7ccbb48d1e02fce |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#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> | ||
|
||
struct azx; | ||
struct azx_dev; | ||
|
||
TRACE_EVENT(azx_pcm_trigger, | ||
|
||
TP_PROTO(struct azx *chip, struct azx_dev *dev, int cmd), | ||
|
||
TP_ARGS(chip, dev, cmd), | ||
|
||
TP_STRUCT__entry( | ||
__field( int, card ) | ||
__field( int, idx ) | ||
__field( int, cmd ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->card = (chip)->card->number; | ||
__entry->idx = (dev)->index; | ||
__entry->cmd = cmd; | ||
), | ||
|
||
TP_printk("[%d:%d] cmd=%d", __entry->card, __entry->idx, __entry->cmd) | ||
); | ||
|
||
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), | ||
|
||
TP_STRUCT__entry( | ||
__field( int, card ) | ||
__field( int, idx ) | ||
__field( unsigned int, pos ) | ||
__field( unsigned int, delay ) | ||
), | ||
|
||
TP_fast_assign( | ||
__entry->card = (chip)->card->number; | ||
__entry->idx = (dev)->index; | ||
__entry->pos = pos; | ||
__entry->delay = delay; | ||
), | ||
|
||
TP_printk("[%d:%d] pos=%u, delay=%u", __entry->card, __entry->idx, __entry->pos, __entry->delay) | ||
); | ||
|
||
#endif /* _TRACE_HDA_INTEL_H */ | ||
|
||
/* This part must be outside protection */ | ||
#undef TRACE_INCLUDE_PATH | ||
#define TRACE_INCLUDE_PATH . | ||
#include <trace/define_trace.h> |