aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/intel8x0.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-03-03 18:32:18 -0500
committerTakashi Iwai <tiwai@suse.de>2008-04-24 06:00:20 -0400
commit9bf8e7ddeaf57f1ec534014c447705ad31d5d721 (patch)
tree6cb4dd4763631bf9f181ba30ffce6ebbfc70073b /sound/pci/intel8x0.c
parent24982c5f7feca2f4d1b0b562a28b767d93a01ce0 (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/pci/intel8x0.c')
-rw-r--r--sound/pci/intel8x0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c
index 07782ba9c74d..47485afcab5f 100644
--- a/sound/pci/intel8x0.c
+++ b/sound/pci/intel8x0.c
@@ -2670,7 +2670,7 @@ static void __devinit intel8x0_measure_ac97_clock(struct intel8x0 *chip)
2670 t = stop_time.tv_sec - start_time.tv_sec; 2670 t = stop_time.tv_sec - start_time.tv_sec;
2671 t *= 1000000; 2671 t *= 1000000;
2672 t += stop_time.tv_usec - start_time.tv_usec; 2672 t += stop_time.tv_usec - start_time.tv_usec;
2673 printk(KERN_INFO "%s: measured %lu usecs\n", __FUNCTION__, t); 2673 printk(KERN_INFO "%s: measured %lu usecs\n", __func__, t);
2674 if (t == 0) { 2674 if (t == 0) {
2675 snd_printk(KERN_ERR "?? calculation error..\n"); 2675 snd_printk(KERN_ERR "?? calculation error..\n");
2676 return; 2676 return;