diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-03-19 09:55:15 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-03-19 09:57:45 +0100 |
commit | cad377acf3d6af6279622048e96680e79e352183 (patch) | |
tree | 6851d4ef26b4e30cb9f5bd0c3f9c853a29380fd1 /sound | |
parent | 85122ea40c4fc82af5b66b8683f525c2c4a36d1a (diff) | |
download | linux-3.10-cad377acf3d6af6279622048e96680e79e352183.tar.gz linux-3.10-cad377acf3d6af6279622048e96680e79e352183.tar.bz2 linux-3.10-cad377acf3d6af6279622048e96680e79e352183.zip |
ALSA: pcm - Fix a typo in error messages
Fix a typo in error messages; forgotten after a copy&paste error.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/core/pcm_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/pcm_lib.c b/sound/core/pcm_lib.c index 86ac9ae9460..2ff25ed4d83 100644 --- a/sound/core/pcm_lib.c +++ b/sound/core/pcm_lib.c @@ -194,7 +194,7 @@ static inline int snd_pcm_update_hw_ptr_post(struct snd_pcm_substream *substream do { \ if (xrun_debug(substream)) { \ if (printk_ratelimit()) { \ - snd_printd("hda_codec: " fmt, ##args); \ + snd_printd("PCM: " fmt, ##args); \ } \ dump_stack_on_xrun(substream); \ } \ |