diff options
author | Sudip Mukherjee <sudipm.mukherjee@gmail.com> | 2014-08-26 17:31:43 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-08-26 17:41:07 +0400 |
commit | 62afa853cb91288e85a8da6351bd29d798402308 (patch) | |
tree | 1c561ea2e6821c15513162382c7524370f053605 /sound/pci/ctxfi/ctvmem.c | |
parent | e720b82027b99482ea5d1001a69bdf2200e86b79 (diff) | |
download | linux-62afa853cb91288e85a8da6351bd29d798402308.tar.xz |
ALSA: ctxfi: fix broken user-visible string
as broken user-visible strings breaks the ability to grep for them , so this patch fixes the broken user-visible strings
Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ctxfi/ctvmem.c')
-rw-r--r-- | sound/pci/ctxfi/ctvmem.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/pci/ctxfi/ctvmem.c b/sound/pci/ctxfi/ctvmem.c index 5ea015bec793..38163f52dd5f 100644 --- a/sound/pci/ctxfi/ctvmem.c +++ b/sound/pci/ctxfi/ctvmem.c @@ -36,8 +36,7 @@ get_vm_block(struct ct_vm *vm, unsigned int size) size = CT_PAGE_ALIGN(size); if (size > vm->size) { - pr_err("ctxfi: Fail! No sufficient device virtual " - "memory space available!\n"); + pr_err("ctxfi: Fail! No sufficient device virtual memory space available!\n"); return NULL; } @@ -132,8 +131,7 @@ ct_vm_map(struct ct_vm *vm, struct snd_pcm_substream *substream, int size) block = get_vm_block(vm, size); if (block == NULL) { - pr_err("ctxfi: No virtual memory block that is big " - "enough to allocate!\n"); + pr_err("ctxfi: No virtual memory block that is big enough to allocate!\n"); return NULL; } |