diff options
| author | Adrian Bunk <bunk@stusta.de> | 2004-10-19 18:39:25 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-10-19 18:39:25 -0700 |
| commit | eb293c3e9cdd84f5ae1ab052af76d523cbbabcbe (patch) | |
| tree | 94cdc25c443916ad65be83738553c04d19072f45 /Documentation/DocBook/kernel-hacking.tmpl | |
| parent | c138da2803b88581199d71b64cb03c1283f68f7a (diff) | |
[PATCH] #include <asm/bitops.h> -> #include <linux/bitops.h>
There's no reason to directly #include <asm/bitops.h> since it's
available on all architectures and also included by
#include <linux/bitops.h>.
This patch changes #include <asm/bitops.h> to #include <linux/bitops.h>.
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'Documentation/DocBook/kernel-hacking.tmpl')
| -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 cd1bc1574613..1e8219d85255 100644 --- a/Documentation/DocBook/kernel-hacking.tmpl +++ b/Documentation/DocBook/kernel-hacking.tmpl @@ -888,7 +888,7 @@ printk(KERN_INFO "my ip: %d.%d.%d.%d\n", NIPQUAD(ipaddress)); The second class of atomic operations is atomic bit operations on a <type>long</type>, defined in - <filename class="headerfile">include/asm/bitops.h</filename>. These + <filename class="headerfile">include/linux/bitops.h</filename>. These operations generally take a pointer to the bit pattern, and a bit number: 0 is the least significant bit. <function>set_bit()</function>, <function>clear_bit()</function> |
