Commit 86a94161 authored by Hirofumi Ogawa's avatar Hirofumi Ogawa Committed by Linus Torvalds

[PATCH] #include <asm/bitops.h> -> #include <linux/bitops.h>

We have to include linux/bitops.h for arch using generic_xxx().

The following patch changes <asm/bitops.h> of include/linux/* to
<linux/bitops.h>.
parent d4806dab
...@@ -22,9 +22,9 @@ ...@@ -22,9 +22,9 @@
#include <linux/stddef.h> #include <linux/stddef.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/radix-tree.h> #include <linux/radix-tree.h>
#include <linux/bitops.h>
#include <asm/atomic.h> #include <asm/atomic.h>
#include <asm/bitops.h>
struct poll_table_struct; struct poll_table_struct;
......
...@@ -14,8 +14,8 @@ ...@@ -14,8 +14,8 @@
#include <linux/device.h> #include <linux/device.h>
#include <linux/devfs_fs_kernel.h> #include <linux/devfs_fs_kernel.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/bitops.h>
#include <asm/hdreg.h> #include <asm/hdreg.h>
#include <asm/bitops.h>
/* /*
* This is the multiple IDE interface driver, as evolved from hd.c. * This is the multiple IDE interface driver, as evolved from hd.c.
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/cache.h> #include <linux/cache.h>
#include <linux/bitops.h>
#include <asm/bitops.h>
#include <asm/atomic.h> #include <asm/atomic.h>
#include <asm/system.h> #include <asm/system.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
#include <linux/major.h> #include <linux/major.h>
#include <linux/ioctl.h> #include <linux/ioctl.h>
#include <linux/types.h> #include <linux/types.h>
#include <asm/bitops.h> #include <linux/bitops.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/hdreg.h> #include <linux/hdreg.h>
#include <linux/proc_fs.h> #include <linux/proc_fs.h>
......
...@@ -24,9 +24,9 @@ struct sigpending { ...@@ -24,9 +24,9 @@ struct sigpending {
*/ */
#ifndef __HAVE_ARCH_SIG_BITOPS #ifndef __HAVE_ARCH_SIG_BITOPS
#include <asm/bitops.h> #include <linux/bitops.h>
/* We don't use <asm/bitops.h> for these because there is no need to /* We don't use <linux/bitops.h> for these because there is no need to
be atomic. */ be atomic. */
static inline void sigaddset(sigset_t *set, int _sig) static inline void sigaddset(sigset_t *set, int _sig)
{ {
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#ifndef _LINUX_THREAD_INFO_H #ifndef _LINUX_THREAD_INFO_H
#define _LINUX_THREAD_INFO_H #define _LINUX_THREAD_INFO_H
#include <linux/bitops.h>
#include <asm/thread_info.h> #include <asm/thread_info.h>
#include <asm/bitops.h>
#ifdef __KERNEL__ #ifdef __KERNEL__
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/list.h> #include <linux/list.h>
#include <asm/bitops.h> #include <linux/bitops.h>
#include <asm/system.h> #include <asm/system.h>
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment