From: Christoph Hellwig Date: Wed, 21 Sep 2005 16:55:40 +0000 (-0700) Subject: [PATCH] fixup Documentation/DocBook/kernel-hacking.tmpl X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=8f91648dcb0685d58aa046b25c69ce0d5f284f8c;p=linux-edison.git [PATCH] fixup Documentation/DocBook/kernel-hacking.tmpl __FUNCTION__ is the prefered kernel idiom, __func__ is not supported by gcc 2.95 (we actually map __FUNCTION__ to __func__ for more recent compilers, but it should never be used directly) Signed-off-by: Christoph Hellwig Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/Documentation/DocBook/kernel-hacking.tmpl b/Documentation/DocBook/kernel-hacking.tmpl index 6367bba32d2..582032eea87 100644 --- a/Documentation/DocBook/kernel-hacking.tmpl +++ b/Documentation/DocBook/kernel-hacking.tmpl @@ -1105,7 +1105,7 @@ static struct block_device_operations opt_fops = { - Function names as strings (__func__). + Function names as strings (__FUNCTION__).