diff options
| author | David S. Miller <davem@davemloft.net> | 2010-04-11 14:53:53 -0700 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2010-04-11 14:53:53 -0700 | 
| commit | 871039f02f8ec4ab2e5e9010718caa8e085786f1 (patch) | |
| tree | f0d2b3127fc48c862967d68c46c2d46668137515 /sound/core/pcm_lib.c | |
| parent | e4077e018b5ead3de9951fc01d8bf12eeeeeefed (diff) | |
| parent | 4a1032faac94ebbf647460ae3e06fc21146eb280 (diff) | |
| download | olio-linux-3.10-871039f02f8ec4ab2e5e9010718caa8e085786f1.tar.xz olio-linux-3.10-871039f02f8ec4ab2e5e9010718caa8e085786f1.zip  | |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6
Conflicts:
	drivers/net/stmmac/stmmac_main.c
	drivers/net/wireless/wl12xx/wl1271_cmd.c
	drivers/net/wireless/wl12xx/wl1271_main.c
	drivers/net/wireless/wl12xx/wl1271_spi.c
	net/core/ethtool.c
	net/mac80211/scan.c
Diffstat (limited to 'sound/core/pcm_lib.c')
| -rw-r--r-- | sound/core/pcm_lib.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c index b546ac2660f..a2ff86189d2 100644 --- a/sound/core/pcm_lib.c +++ b/sound/core/pcm_lib.c @@ -148,6 +148,9 @@ static void pcm_debug_name(struct snd_pcm_substream *substream,  #define xrun_debug(substream, mask) \  			((substream)->pstr->xrun_debug & (mask)) +#else +#define xrun_debug(substream, mask)	0 +#endif  #define dump_stack_on_xrun(substream) do {			\  		if (xrun_debug(substream, XRUN_DEBUG_STACK))	\ @@ -169,6 +172,7 @@ static void xrun(struct snd_pcm_substream *substream)  	}  } +#ifdef CONFIG_SND_PCM_XRUN_DEBUG  #define hw_ptr_error(substream, fmt, args...)				\  	do {								\  		if (xrun_debug(substream, XRUN_DEBUG_BASIC)) {		\ @@ -255,8 +259,6 @@ static void xrun_log_show(struct snd_pcm_substream *substream)  #else /* ! CONFIG_SND_PCM_XRUN_DEBUG */ -#define xrun_debug(substream, mask)	0 -#define xrun(substream)			do { } while (0)  #define hw_ptr_error(substream, fmt, args...) do { } while (0)  #define xrun_log(substream, pos)	do { } while (0)  #define xrun_log_show(substream)	do { } while (0)  |