diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-03 18:32:18 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-04-24 06:00:20 -0400 |
commit | 9bf8e7ddeaf57f1ec534014c447705ad31d5d721 (patch) | |
tree | 6cb4dd4763631bf9f181ba30ffce6ebbfc70073b /sound/soc/s3c24xx | |
parent | 24982c5f7feca2f4d1b0b562a28b767d93a01ce0 (diff) |
[ALSA] sound: replace remaining __FUNCTION__ occurences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/soc/s3c24xx')
-rw-r--r-- | sound/soc/s3c24xx/s3c24xx-i2s.c | 20 | ||||
-rw-r--r-- | sound/soc/s3c24xx/s3c24xx-pcm.c | 28 |
2 files changed, 24 insertions, 24 deletions
diff --git a/sound/soc/s3c24xx/s3c24xx-i2s.c b/sound/soc/s3c24xx/s3c24xx-i2s.c index 0a3c630951be..301002cd3fc8 100644 --- a/sound/soc/s3c24xx/s3c24xx-i2s.c +++ b/sound/soc/s3c24xx/s3c24xx-i2s.c | |||
@@ -89,7 +89,7 @@ static void s3c24xx_snd_txctrl(int on) | |||
89 | u32 iiscon; | 89 | u32 iiscon; |
90 | u32 iismod; | 90 | u32 iismod; |
91 | 91 | ||
92 | DBG("Entered %s\n", __FUNCTION__); | 92 | DBG("Entered %s\n", __func__); |
93 | 93 | ||
94 | iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON); | 94 | iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON); |
95 | iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON); | 95 | iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON); |
@@ -134,7 +134,7 @@ static void s3c24xx_snd_rxctrl(int on) | |||
134 | u32 iiscon; | 134 | u32 iiscon; |
135 | u32 iismod; | 135 | u32 iismod; |
136 | 136 | ||
137 | DBG("Entered %s\n", __FUNCTION__); | 137 | DBG("Entered %s\n", __func__); |
138 | 138 | ||
139 | iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON); | 139 | iisfcon = readl(s3c24xx_i2s.regs + S3C2410_IISFCON); |
140 | iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON); | 140 | iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON); |
@@ -182,7 +182,7 @@ static int s3c24xx_snd_lrsync(void) | |||
182 | u32 iiscon; | 182 | u32 iiscon; |
183 | unsigned long timeout = jiffies + msecs_to_jiffies(5); | 183 | unsigned long timeout = jiffies + msecs_to_jiffies(5); |
184 | 184 | ||
185 | DBG("Entered %s\n", __FUNCTION__); | 185 | DBG("Entered %s\n", __func__); |
186 | 186 | ||
187 | while (1) { | 187 | while (1) { |
188 | iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON); | 188 | iiscon = readl(s3c24xx_i2s.regs + S3C2410_IISCON); |
@@ -201,7 +201,7 @@ static int s3c24xx_snd_lrsync(void) | |||
201 | */ | 201 | */ |
202 | static inline int s3c24xx_snd_is_clkmaster(void) | 202 | static inline int s3c24xx_snd_is_clkmaster(void) |
203 | { | 203 | { |
204 | DBG("Entered %s\n", __FUNCTION__); | 204 | DBG("Entered %s\n", __func__); |
205 | 205 | ||
206 | return (readl(s3c24xx_i2s.regs + S3C2410_IISMOD) & S3C2410_IISMOD_SLAVE) ? 0:1; | 206 | return (readl(s3c24xx_i2s.regs + S3C2410_IISMOD) & S3C2410_IISMOD_SLAVE) ? 0:1; |
207 | } | 207 | } |
@@ -214,7 +214,7 @@ static int s3c24xx_i2s_set_fmt(struct snd_soc_cpu_dai *cpu_dai, | |||
214 | { | 214 | { |
215 | u32 iismod; | 215 | u32 iismod; |
216 | 216 | ||
217 | DBG("Entered %s\n", __FUNCTION__); | 217 | DBG("Entered %s\n", __func__); |
218 | 218 | ||
219 | iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD); | 219 | iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD); |
220 | DBG("hw_params r: IISMOD: %lx \n", iismod); | 220 | DBG("hw_params r: IISMOD: %lx \n", iismod); |
@@ -250,7 +250,7 @@ static int s3c24xx_i2s_hw_params(struct snd_pcm_substream *substream, | |||
250 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 250 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
251 | u32 iismod; | 251 | u32 iismod; |
252 | 252 | ||
253 | DBG("Entered %s\n", __FUNCTION__); | 253 | DBG("Entered %s\n", __func__); |
254 | 254 | ||
255 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) | 255 | if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) |
256 | rtd->dai->cpu_dai->dma_data = &s3c24xx_i2s_pcm_stereo_out; | 256 | rtd->dai->cpu_dai->dma_data = &s3c24xx_i2s_pcm_stereo_out; |
@@ -278,7 +278,7 @@ static int s3c24xx_i2s_trigger(struct snd_pcm_substream *substream, int cmd) | |||
278 | { | 278 | { |
279 | int ret = 0; | 279 | int ret = 0; |
280 | 280 | ||
281 | DBG("Entered %s\n", __FUNCTION__); | 281 | DBG("Entered %s\n", __func__); |
282 | 282 | ||
283 | switch (cmd) { | 283 | switch (cmd) { |
284 | case SNDRV_PCM_TRIGGER_START: | 284 | case SNDRV_PCM_TRIGGER_START: |
@@ -320,7 +320,7 @@ static int s3c24xx_i2s_set_sysclk(struct snd_soc_cpu_dai *cpu_dai, | |||
320 | { | 320 | { |
321 | u32 iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD); | 321 | u32 iismod = readl(s3c24xx_i2s.regs + S3C2410_IISMOD); |
322 | 322 | ||
323 | DBG("Entered %s\n", __FUNCTION__); | 323 | DBG("Entered %s\n", __func__); |
324 | 324 | ||
325 | iismod &= ~S3C2440_IISMOD_MPLL; | 325 | iismod &= ~S3C2440_IISMOD_MPLL; |
326 | 326 | ||
@@ -346,7 +346,7 @@ static int s3c24xx_i2s_set_clkdiv(struct snd_soc_cpu_dai *cpu_dai, | |||
346 | { | 346 | { |
347 | u32 reg; | 347 | u32 reg; |
348 | 348 | ||
349 | DBG("Entered %s\n", __FUNCTION__); | 349 | DBG("Entered %s\n", __func__); |
350 | 350 | ||
351 | switch (div_id) { | 351 | switch (div_id) { |
352 | case S3C24XX_DIV_BCLK: | 352 | case S3C24XX_DIV_BCLK: |
@@ -381,7 +381,7 @@ EXPORT_SYMBOL_GPL(s3c24xx_i2s_get_clockrate); | |||
381 | 381 | ||
382 | static int s3c24xx_i2s_probe(struct platform_device *pdev) | 382 | static int s3c24xx_i2s_probe(struct platform_device *pdev) |
383 | { | 383 | { |
384 | DBG("Entered %s\n", __FUNCTION__); | 384 | DBG("Entered %s\n", __func__); |
385 | 385 | ||
386 | s3c24xx_i2s.regs = ioremap(S3C2410_PA_IIS, 0x100); | 386 | s3c24xx_i2s.regs = ioremap(S3C2410_PA_IIS, 0x100); |
387 | if (s3c24xx_i2s.regs == NULL) | 387 | if (s3c24xx_i2s.regs == NULL) |
diff --git a/sound/soc/s3c24xx/s3c24xx-pcm.c b/sound/soc/s3c24xx/s3c24xx-pcm.c index 29a6c82f873a..40112e2b1ecb 100644 --- a/sound/soc/s3c24xx/s3c24xx-pcm.c +++ b/sound/soc/s3c24xx/s3c24xx-pcm.c | |||
@@ -88,7 +88,7 @@ static void s3c24xx_pcm_enqueue(struct snd_pcm_substream *substream) | |||
88 | dma_addr_t pos = prtd->dma_pos; | 88 | dma_addr_t pos = prtd->dma_pos; |
89 | int ret; | 89 | int ret; |
90 | 90 | ||
91 | DBG("Entered %s\n", __FUNCTION__); | 91 | DBG("Entered %s\n", __func__); |
92 | 92 | ||
93 | while (prtd->dma_loaded < prtd->dma_limit) { | 93 | while (prtd->dma_loaded < prtd->dma_limit) { |
94 | unsigned long len = prtd->dma_period; | 94 | unsigned long len = prtd->dma_period; |
@@ -98,7 +98,7 @@ static void s3c24xx_pcm_enqueue(struct snd_pcm_substream *substream) | |||
98 | if ((pos + len) > prtd->dma_end) { | 98 | if ((pos + len) > prtd->dma_end) { |
99 | len = prtd->dma_end - pos; | 99 | len = prtd->dma_end - pos; |
100 | DBG(KERN_DEBUG "%s: corrected dma len %ld\n", | 100 | DBG(KERN_DEBUG "%s: corrected dma len %ld\n", |
101 | __FUNCTION__, len); | 101 | __func__, len); |
102 | } | 102 | } |
103 | 103 | ||
104 | ret = s3c2410_dma_enqueue(prtd->params->channel, | 104 | ret = s3c2410_dma_enqueue(prtd->params->channel, |
@@ -123,7 +123,7 @@ static void s3c24xx_audio_buffdone(struct s3c2410_dma_chan *channel, | |||
123 | struct snd_pcm_substream *substream = dev_id; | 123 | struct snd_pcm_substream *substream = dev_id; |
124 | struct s3c24xx_runtime_data *prtd; | 124 | struct s3c24xx_runtime_data *prtd; |
125 | 125 | ||
126 | DBG("Entered %s\n", __FUNCTION__); | 126 | DBG("Entered %s\n", __func__); |
127 | 127 | ||
128 | if (result == S3C2410_RES_ABORT || result == S3C2410_RES_ERR) | 128 | if (result == S3C2410_RES_ABORT || result == S3C2410_RES_ERR) |
129 | return; | 129 | return; |
@@ -152,7 +152,7 @@ static int s3c24xx_pcm_hw_params(struct snd_pcm_substream *substream, | |||
152 | unsigned long totbytes = params_buffer_bytes(params); | 152 | unsigned long totbytes = params_buffer_bytes(params); |
153 | int ret=0; | 153 | int ret=0; |
154 | 154 | ||
155 | DBG("Entered %s\n", __FUNCTION__); | 155 | DBG("Entered %s\n", __func__); |
156 | 156 | ||
157 | /* return if this is a bufferless transfer e.g. | 157 | /* return if this is a bufferless transfer e.g. |
158 | * codec <--> BT codec or GSM modem -- lg FIXME */ | 158 | * codec <--> BT codec or GSM modem -- lg FIXME */ |
@@ -200,7 +200,7 @@ static int s3c24xx_pcm_hw_free(struct snd_pcm_substream *substream) | |||
200 | { | 200 | { |
201 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; | 201 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; |
202 | 202 | ||
203 | DBG("Entered %s\n", __FUNCTION__); | 203 | DBG("Entered %s\n", __func__); |
204 | 204 | ||
205 | /* TODO - do we need to ensure DMA flushed */ | 205 | /* TODO - do we need to ensure DMA flushed */ |
206 | snd_pcm_set_runtime_buffer(substream, NULL); | 206 | snd_pcm_set_runtime_buffer(substream, NULL); |
@@ -218,7 +218,7 @@ static int s3c24xx_pcm_prepare(struct snd_pcm_substream *substream) | |||
218 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; | 218 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; |
219 | int ret = 0; | 219 | int ret = 0; |
220 | 220 | ||
221 | DBG("Entered %s\n", __FUNCTION__); | 221 | DBG("Entered %s\n", __func__); |
222 | 222 | ||
223 | /* return if this is a bufferless transfer e.g. | 223 | /* return if this is a bufferless transfer e.g. |
224 | * codec <--> BT codec or GSM modem -- lg FIXME */ | 224 | * codec <--> BT codec or GSM modem -- lg FIXME */ |
@@ -263,7 +263,7 @@ static int s3c24xx_pcm_trigger(struct snd_pcm_substream *substream, int cmd) | |||
263 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; | 263 | struct s3c24xx_runtime_data *prtd = substream->runtime->private_data; |
264 | int ret = 0; | 264 | int ret = 0; |
265 | 265 | ||
266 | DBG("Entered %s\n", __FUNCTION__); | 266 | DBG("Entered %s\n", __func__); |
267 | 267 | ||
268 | spin_lock(&prtd->lock); | 268 | spin_lock(&prtd->lock); |
269 | 269 | ||
@@ -301,7 +301,7 @@ static snd_pcm_uframes_t | |||
301 | unsigned long res; | 301 | unsigned long res; |
302 | dma_addr_t src, dst; | 302 | dma_addr_t src, dst; |
303 | 303 | ||
304 | DBG("Entered %s\n", __FUNCTION__); | 304 | DBG("Entered %s\n", __func__); |
305 | 305 | ||
306 | spin_lock(&prtd->lock); | 306 | spin_lock(&prtd->lock); |
307 | s3c2410_dma_getposition(prtd->params->channel, &src, &dst); | 307 | s3c2410_dma_getposition(prtd->params->channel, &src, &dst); |
@@ -334,7 +334,7 @@ static int s3c24xx_pcm_open(struct snd_pcm_substream *substream) | |||
334 | struct snd_pcm_runtime *runtime = substream->runtime; | 334 | struct snd_pcm_runtime *runtime = substream->runtime; |
335 | struct s3c24xx_runtime_data *prtd; | 335 | struct s3c24xx_runtime_data *prtd; |
336 | 336 | ||
337 | DBG("Entered %s\n", __FUNCTION__); | 337 | DBG("Entered %s\n", __func__); |
338 | 338 | ||
339 | snd_soc_set_runtime_hwparams(substream, &s3c24xx_pcm_hardware); | 339 | snd_soc_set_runtime_hwparams(substream, &s3c24xx_pcm_hardware); |
340 | 340 | ||
@@ -353,7 +353,7 @@ static int s3c24xx_pcm_close(struct snd_pcm_substream *substream) | |||
353 | struct snd_pcm_runtime *runtime = substream->runtime; | 353 | struct snd_pcm_runtime *runtime = substream->runtime; |
354 | struct s3c24xx_runtime_data *prtd = runtime->private_data; | 354 | struct s3c24xx_runtime_data *prtd = runtime->private_data; |
355 | 355 | ||
356 | DBG("Entered %s\n", __FUNCTION__); | 356 | DBG("Entered %s\n", __func__); |
357 | 357 | ||
358 | if (prtd) | 358 | if (prtd) |
359 | kfree(prtd); | 359 | kfree(prtd); |
@@ -368,7 +368,7 @@ static int s3c24xx_pcm_mmap(struct snd_pcm_substream *substream, | |||
368 | { | 368 | { |
369 | struct snd_pcm_runtime *runtime = substream->runtime; | 369 | struct snd_pcm_runtime *runtime = substream->runtime; |
370 | 370 | ||
371 | DBG("Entered %s\n", __FUNCTION__); | 371 | DBG("Entered %s\n", __func__); |
372 | 372 | ||
373 | return dma_mmap_writecombine(substream->pcm->card->dev, vma, | 373 | return dma_mmap_writecombine(substream->pcm->card->dev, vma, |
374 | runtime->dma_area, | 374 | runtime->dma_area, |
@@ -394,7 +394,7 @@ static int s3c24xx_pcm_preallocate_dma_buffer(struct snd_pcm *pcm, int stream) | |||
394 | struct snd_dma_buffer *buf = &substream->dma_buffer; | 394 | struct snd_dma_buffer *buf = &substream->dma_buffer; |
395 | size_t size = s3c24xx_pcm_hardware.buffer_bytes_max; | 395 | size_t size = s3c24xx_pcm_hardware.buffer_bytes_max; |
396 | 396 | ||
397 | DBG("Entered %s\n", __FUNCTION__); | 397 | DBG("Entered %s\n", __func__); |
398 | 398 | ||
399 | buf->dev.type = SNDRV_DMA_TYPE_DEV; | 399 | buf->dev.type = SNDRV_DMA_TYPE_DEV; |
400 | buf->dev.dev = pcm->card->dev; | 400 | buf->dev.dev = pcm->card->dev; |
@@ -413,7 +413,7 @@ static void s3c24xx_pcm_free_dma_buffers(struct snd_pcm *pcm) | |||
413 | struct snd_dma_buffer *buf; | 413 | struct snd_dma_buffer *buf; |
414 | int stream; | 414 | int stream; |
415 | 415 | ||
416 | DBG("Entered %s\n", __FUNCTION__); | 416 | DBG("Entered %s\n", __func__); |
417 | 417 | ||
418 | for (stream = 0; stream < 2; stream++) { | 418 | for (stream = 0; stream < 2; stream++) { |
419 | substream = pcm->streams[stream].substream; | 419 | substream = pcm->streams[stream].substream; |
@@ -437,7 +437,7 @@ static int s3c24xx_pcm_new(struct snd_card *card, | |||
437 | { | 437 | { |
438 | int ret = 0; | 438 | int ret = 0; |
439 | 439 | ||
440 | DBG("Entered %s\n", __FUNCTION__); | 440 | DBG("Entered %s\n", __func__); |
441 | 441 | ||
442 | if (!card->dev->dma_mask) | 442 | if (!card->dev->dma_mask) |
443 | card->dev->dma_mask = &s3c24xx_pcm_dmamask; | 443 | card->dev->dma_mask = &s3c24xx_pcm_dmamask; |