diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-05-14 09:19:30 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-05-14 09:19:30 -0400 |
commit | b3e0afe61e8271a8d082478752a67e5c279c8f23 (patch) | |
tree | 697242a45d03482983caf8ba2d9c00d6e7b9e33a /sound/pci/ctxfi/ctpcm.c | |
parent | 35b053becb64eba13f3ea5c8c51023997169ff34 (diff) |
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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/ctxfi/ctpcm.c b/sound/pci/ctxfi/ctpcm.c index 73d4fdbbb9f4..a64cb0ed8759 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) | |||
284 | err = atc->pcm_playback_prepare(atc, apcm); | 284 | err = atc->pcm_playback_prepare(atc, apcm); |
285 | 285 | ||
286 | if (err < 0) { | 286 | if (err < 0) { |
287 | printk(KERN_ERR "Preparing pcm playback failed!!!\n"); | 287 | printk(KERN_ERR "ctxfi: Preparing pcm playback failed!!!\n"); |
288 | return err; | 288 | return err; |
289 | } | 289 | } |
290 | 290 | ||
@@ -389,7 +389,7 @@ static int ct_pcm_capture_prepare(struct snd_pcm_substream *substream) | |||
389 | 389 | ||
390 | err = atc->pcm_capture_prepare(atc, apcm); | 390 | err = atc->pcm_capture_prepare(atc, apcm); |
391 | if (err < 0) { | 391 | if (err < 0) { |
392 | printk(KERN_ERR "Preparing pcm capture failed!!!\n"); | 392 | printk(KERN_ERR "ctxfi: Preparing pcm capture failed!!!\n"); |
393 | return err; | 393 | return err; |
394 | } | 394 | } |
395 | 395 | ||
@@ -477,7 +477,7 @@ int ct_alsa_pcm_create(struct ct_atc *atc, | |||
477 | err = snd_pcm_new(atc->card, name, device, | 477 | err = snd_pcm_new(atc->card, name, device, |
478 | playback_count, capture_count, &pcm); | 478 | playback_count, capture_count, &pcm); |
479 | if (err < 0) { | 479 | if (err < 0) { |
480 | printk(KERN_ERR "snd_pcm_new failed!! Err=%d\n", err); | 480 | printk(KERN_ERR "ctxfi: snd_pcm_new failed!! Err=%d\n", err); |
481 | return err; | 481 | return err; |
482 | } | 482 | } |
483 | 483 | ||