summaryrefslogtreecommitdiff
path: root/drivers/dahdi/xpp/mmapdrv.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2012-01-11 15:17:09 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2012-01-11 15:17:09 +0000
commitd95c7702f7ca7bacad21b890724964072139260d (patch)
tree3331b36426f374cc951f5a3261dba544633ca18d /drivers/dahdi/xpp/mmapdrv.c
parente3d69c921fa952d060a96b0feac824a7da5da0a3 (diff)
xpp: style: convert __FUNCTION__ to __func__
* Applied via: perl -pi -e 's/\b__FUNCTION__\b/__func__/g' "$@" Signed-off-by: Oron Peled <oron.peled@xorcom.com> Acked-By: Tzafrir Cohen <tzafrir.cohen@xorcom.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@10422 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/xpp/mmapdrv.c')
-rw-r--r--drivers/dahdi/xpp/mmapdrv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dahdi/xpp/mmapdrv.c b/drivers/dahdi/xpp/mmapdrv.c
index 05c91ab..0635903 100644
--- a/drivers/dahdi/xpp/mmapdrv.c
+++ b/drivers/dahdi/xpp/mmapdrv.c
@@ -383,7 +383,7 @@ static int xpp_mmap_proc_write(struct file *file, const char __user *buffer, uns
if (*p == '\0') break;
value = simple_strtoul(p, &endp, 16);
if (endp == p || value > 0xFF) {
- INFO("%s: Bad input\n", __FUNCTION__);
+ INFO("%s: Bad input\n", __func__);
count = -EINVAL;
goto out;
}