diff options
author | Christoph Hellwig <hch@lst.de> | 2005-09-21 18:55:40 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-21 19:11:55 +0200 |
commit | 8f91648dcb0685d58aa046b25c69ce0d5f284f8c (patch) | |
tree | 728475d2e8a2a4c92bf251657daa7287e5bb36e2 /Documentation/DocBook/kernel-hacking.tmpl | |
parent | [PATCH] mm: add a note about partially hardcoded VM_* flags (diff) | |
download | linux-8f91648dcb0685d58aa046b25c69ce0d5f284f8c.tar.xz linux-8f91648dcb0685d58aa046b25c69ce0d5f284f8c.zip |
[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 '')
-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 6367bba32d22..582032eea872 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> |