Skip to content

Commit

Permalink
ALSA: ASoC: Add missing new-line at end of strings
Browse files Browse the repository at this point in the history
Two warning messages lack their trailing new-line, add it.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
  • Loading branch information
Jean Delvare authored and Jaroslav Kysela committed Aug 29, 2008
1 parent f1d4e28 commit 9b6e12e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sound/soc/at91/at91-ssc.c
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ static int at91_ssc_hw_params(struct snd_pcm_substream *substream,
dma_params->pdc_xfer_size = 4;
break;
default:
printk(KERN_WARNING "at91-ssc: unsupported PCM format");
printk(KERN_WARNING "at91-ssc: unsupported PCM format\n");
return -EINVAL;
}

Expand Down
2 changes: 1 addition & 1 deletion sound/soc/davinci/davinci-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ static int davinci_i2s_hw_params(struct snd_pcm_substream *substream,
mcbsp_word_length = DAVINCI_MCBSP_WORD_32;
break;
default:
printk(KERN_WARNING "davinci-i2s: unsupported PCM format");
printk(KERN_WARNING "davinci-i2s: unsupported PCM format\n");
return -EINVAL;
}

Expand Down

0 comments on commit 9b6e12e

Please sign in to comment.