diff options
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 | ||