diff options
author | Joe Perches <joe@perches.com> | 2010-01-31 15:02:12 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-02-01 09:35:23 -0500 |
commit | 2f1ff6614cb5938e5c5760358752d92deb67fb63 (patch) | |
tree | 07a4be123a03a53d2c080cd0e8a4bdceb7d7ab11 /sound/soc/blackfin/bf5xx-ac97-pcm.c | |
parent | b0580913797034a1001e867b8b492c75226bf77e (diff) |
ASoC: Fix continuation line formats
String constants that are continued on subsequent lines with \
are not good.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/blackfin/bf5xx-ac97-pcm.c')
-rw-r--r-- | sound/soc/blackfin/bf5xx-ac97-pcm.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sound/soc/blackfin/bf5xx-ac97-pcm.c b/sound/soc/blackfin/bf5xx-ac97-pcm.c index cf0dfb7ca221..67cbfe7283da 100644 --- a/sound/soc/blackfin/bf5xx-ac97-pcm.c +++ b/sound/soc/blackfin/bf5xx-ac97-pcm.c | |||
@@ -349,9 +349,7 @@ static int bf5xx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream) | |||
349 | sport_handle->tx_dma_buf = dma_alloc_coherent(NULL, \ | 349 | sport_handle->tx_dma_buf = dma_alloc_coherent(NULL, \ |
350 | size, &sport_handle->tx_dma_phy, GFP_KERNEL); | 350 | size, &sport_handle->tx_dma_phy, GFP_KERNEL); |
351 | if (!sport_handle->tx_dma_buf) { | 351 | if (!sport_handle->tx_dma_buf) { |
352 | pr_err("Failed to allocate memory for tx dma \ | 352 | pr_err("Failed to allocate memory for tx dma buf - Please increase uncached DMA memory region\n"); |
353 | buf - Please increase uncached DMA \ | ||
354 | memory region\n"); | ||
355 | return -ENOMEM; | 353 | return -ENOMEM; |
356 | } else | 354 | } else |
357 | memset(sport_handle->tx_dma_buf, 0, size); | 355 | memset(sport_handle->tx_dma_buf, 0, size); |
@@ -362,9 +360,7 @@ static int bf5xx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream) | |||
362 | sport_handle->rx_dma_buf = dma_alloc_coherent(NULL, \ | 360 | sport_handle->rx_dma_buf = dma_alloc_coherent(NULL, \ |
363 | size, &sport_handle->rx_dma_phy, GFP_KERNEL); | 361 | size, &sport_handle->rx_dma_phy, GFP_KERNEL); |
364 | if (!sport_handle->rx_dma_buf) { | 362 | if (!sport_handle->rx_dma_buf) { |
365 | pr_err("Failed to allocate memory for rx dma \ | 363 | pr_err("Failed to allocate memory for rx dma buf - Please increase uncached DMA memory region\n"); |
366 | buf - Please increase uncached DMA \ | ||
367 | memory region\n"); | ||
368 | return -ENOMEM; | 364 | return -ENOMEM; |
369 | } else | 365 | } else |
370 | memset(sport_handle->rx_dma_buf, 0, size); | 366 | memset(sport_handle->rx_dma_buf, 0, size); |