aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/ctxfi/ctpcm.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-05-14 15:19:30 +0200
committerTakashi Iwai <tiwai@suse.de>2009-05-14 15:19:30 +0200
commitb3e0afe61e8271a8d082478752a67e5c279c8f23 (patch)
tree697242a45d03482983caf8ba2d9c00d6e7b9e33a /sound/pci/ctxfi/ctpcm.c
parent35b053becb64eba13f3ea5c8c51023997169ff34 (diff)
downloadkernel_samsung_smdk4412-b3e0afe61e8271a8d082478752a67e5c279c8f23.zip
kernel_samsung_smdk4412-b3e0afe61e8271a8d082478752a67e5c279c8f23.tar.gz
kernel_samsung_smdk4412-b3e0afe61e8271a8d082478752a67e5c279c8f23.tar.bz2
ALSA: ctxfi - Add prefix to debug prints
Added ctxfi: prefix to each debug print. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/ctpcm.c')
-rw-r--r--sound/pci/ctxfi/ctpcm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ctxfi/ctpcm.c b/sound/pci/ctxfi/ctpcm.c
index 73d4fdb..a64cb0e 100644
--- a/sound/pci/ctxfi/ctpcm.c
+++ b/sound/pci/ctxfi/ctpcm.c
@@ -284,7 +284,7 @@ static int ct_pcm_playback_prepare(struct snd_pcm_substream *substream)
err = atc->pcm_playback_prepare(atc, apcm);
if (err < 0) {
- printk(KERN_ERR "Preparing pcm playback failed!!!\n");
+ printk(KERN_ERR "ctxfi: Preparing pcm playback failed!!!\n");
return err;
}
@@ -389,7 +389,7 @@ static int ct_pcm_capture_prepare(struct snd_pcm_substream *substream)
err = atc->pcm_capture_prepare(atc, apcm);
if (err < 0) {
- printk(KERN_ERR "Preparing pcm capture failed!!!\n");
+ printk(KERN_ERR "ctxfi: Preparing pcm capture failed!!!\n");
return err;
}
@@ -477,7 +477,7 @@ int ct_alsa_pcm_create(struct ct_atc *atc,
err = snd_pcm_new(atc->card, name, device,
playback_count, capture_count, &pcm);
if (err < 0) {
- printk(KERN_ERR "snd_pcm_new failed!! Err=%d\n", err);
+ printk(KERN_ERR "ctxfi: snd_pcm_new failed!! Err=%d\n", err);
return err;
}