diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-06 05:24:51 +0300 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-03-11 08:58:41 +0300 |
commit | 96b2dd1f1fdb9a131b7f2e79e5c7b2e4282cfcbf (patch) | |
tree | f47563e553c38cdf9571e3492ed816b2e6b129b2 /drivers/acpi/video.c | |
parent | bd12935f04066df31903eaf74b1cec03319ecd2e (diff) | |
download | linux-96b2dd1f1fdb9a131b7f2e79e5c7b2e4282cfcbf.tar.xz |
ACPI: replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/video.c')
-rw-r--r-- | drivers/acpi/video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 12cce69b5441..d64a142e5e10 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c @@ -1201,7 +1201,7 @@ static int acpi_video_bus_ROM_seq_show(struct seq_file *seq, void *offset) if (!video) goto end; - printk(KERN_INFO PREFIX "Please implement %s\n", __FUNCTION__); + printk(KERN_INFO PREFIX "Please implement %s\n", __func__); seq_printf(seq, "<TODO>\n"); end: |