diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-03-05 18:24:58 -0800 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2008-03-06 11:30:26 +0000 |
commit | fa9363c5f866d6beedf36d4f4b1393ba802d8248 (patch) | |
tree | 6651628e3e98ae419d24b46600e8de98304f2cc7 /drivers/watchdog/shwdt.c | |
parent | 30ec910e02b35e7c3d600af694a5aec4b6690ddc (diff) |
[WATCHDOG] replace remaining __FUNCTION__ occurrences
__FUNCTION__ is gcc-specific, use __func__
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'drivers/watchdog/shwdt.c')
-rw-r--r-- | drivers/watchdog/shwdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/shwdt.c b/drivers/watchdog/shwdt.c index 61dde863bd40..1277f7e9cc54 100644 --- a/drivers/watchdog/shwdt.c +++ b/drivers/watchdog/shwdt.c @@ -298,7 +298,7 @@ static int sh_wdt_mmap(struct file *file, struct vm_area_struct *vma) if (io_remap_pfn_range(vma, vma->vm_start, addr >> PAGE_SHIFT, PAGE_SIZE, vma->vm_page_prot)) { printk(KERN_ERR PFX "%s: io_remap_pfn_range failed\n", - __FUNCTION__); + __func__); return -EAGAIN; } |