summaryrefslogtreecommitdiff
path: root/fs/devfs
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2004-10-19 18:39:25 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-19 18:39:25 -0700
commiteb293c3e9cdd84f5ae1ab052af76d523cbbabcbe (patch)
tree94cdc25c443916ad65be83738553c04d19072f45 /fs/devfs
parentc138da2803b88581199d71b64cb03c1283f68f7a (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 'fs/devfs')
-rw-r--r--fs/devfs/base.c2
-rw-r--r--fs/devfs/util.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/devfs/base.c b/fs/devfs/base.c
index 65e299a2d97e..22e3cf0852aa 100644
--- a/fs/devfs/base.c
+++ b/fs/devfs/base.c
@@ -677,13 +677,13 @@
#include <linux/rwsem.h>
#include <linux/sched.h>
#include <linux/namei.h>
+#include <linux/bitops.h>
#include <asm/uaccess.h>
#include <asm/io.h>
#include <asm/processor.h>
#include <asm/system.h>
#include <asm/pgtable.h>
-#include <asm/bitops.h>
#include <asm/atomic.h>
#define DEVFS_VERSION "2004-01-31"
diff --git a/fs/devfs/util.c b/fs/devfs/util.c
index 06a2d827e3e5..db06d388c9ac 100644
--- a/fs/devfs/util.c
+++ b/fs/devfs/util.c
@@ -71,7 +71,7 @@
#include <linux/slab.h>
#include <linux/vmalloc.h>
#include <linux/genhd.h>
-#include <asm/bitops.h>
+#include <linux/bitops.h>
int devfs_register_tape(const char *name)
{