diff options
author | Christoph Hellwig <hch@lst.de> | 2005-09-21 09:55:40 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-21 10:11:55 -0700 |
commit | 8f91648dcb0685d58aa046b25c69ce0d5f284f8c (patch) | |
tree | 728475d2e8a2a4c92bf251657daa7287e5bb36e2 /Documentation | |
parent | 7e2cff42cfac27c25202648c5c89f9171e5bc085 (diff) | |
download | op-kernel-dev-8f91648dcb0685d58aa046b25c69ce0d5f284f8c.zip op-kernel-dev-8f91648dcb0685d58aa046b25c69ce0d5f284f8c.tar.gz |
[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 <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/kernel-hacking.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/DocBook/kernel-hacking.tmpl b/Documentation/DocBook/kernel-hacking.tmpl index 6367bba..582032e 100644 --- a/Documentation/DocBook/kernel-hacking.tmpl +++ b/Documentation/DocBook/kernel-hacking.tmpl @@ -1105,7 +1105,7 @@ static struct block_device_operations opt_fops = { </listitem> <listitem> <para> - Function names as strings (__func__). + Function names as strings (__FUNCTION__). </para> </listitem> <listitem> |