diff options
author | Joe Perches <joe@perches.com> | 2010-01-31 12:02:08 -0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-03-03 16:42:54 -0800 |
commit | bc56894234e55ad53419cfda1bbfc401a8be3e46 (patch) | |
tree | 3f5bf29207d6466a7522de4bffde4b4755552a8a /drivers/staging/dream | |
parent | 7df1735bebee6d1f3492c79ab110f3a6e67e0244 (diff) |
Staging: Fix continuation line formats
String constants that are continued on subsequent lines with \
are not good.
Fixed a "is tryied" / tried typo
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/dream')
-rw-r--r-- | drivers/staging/dream/qdsp5/audio_mp3.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/dream/qdsp5/audio_mp3.c b/drivers/staging/dream/qdsp5/audio_mp3.c index b95574f699f..7ed6e261d6c 100644 --- a/drivers/staging/dream/qdsp5/audio_mp3.c +++ b/drivers/staging/dream/qdsp5/audio_mp3.c @@ -650,8 +650,7 @@ static long audio_ioctl(struct file *file, unsigned int cmd, unsigned long arg) &audio->read_phys, GFP_KERNEL); if (!audio->read_data) { - pr_err("audio_mp3: malloc pcm \ - buf failed\n"); + pr_err("audio_mp3: malloc pcm buf failed\n"); rc = -1; } else { uint8_t index; |