Commit 0a3021f4 authored by Robert P. J. Day's avatar Robert P. J. Day Committed by Linus Torvalds

Remove unnecessary includes of spinlock.h under include/linux

Remove the obviously unnecessary includes of <linux/spinlock.h> under the
include/linux/ directory, and fix the couple errors that are introduced as
a result of that.
Signed-off-by: default avatarRobert P. J. Day <rpjday@mindspring.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 9aacd599
...@@ -12,7 +12,6 @@ ...@@ -12,7 +12,6 @@
#include <linux/device.h> #include <linux/device.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/klist.h> #include <linux/klist.h>
#include <linux/spinlock.h>
struct attribute_container { struct attribute_container {
struct list_head node; struct list_head node;
......
...@@ -44,7 +44,6 @@ typedef struct __user_cap_data_struct { ...@@ -44,7 +44,6 @@ typedef struct __user_cap_data_struct {
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/spinlock.h>
#include <asm/current.h> #include <asm/current.h>
/* #define STRICT_CAP_T_TYPECHECKS */ /* #define STRICT_CAP_T_TYPECHECKS */
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
#define _LINUX_CONSOLE_H_ 1 #define _LINUX_CONSOLE_H_ 1
#include <linux/types.h> #include <linux/types.h>
#include <linux/spinlock.h>
struct vc_data; struct vc_data;
struct console_font_op; struct console_font_op;
......
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
#define __LINUX_DS17287RTC_H #define __LINUX_DS17287RTC_H
#include <linux/rtc.h> /* get the user-level API */ #include <linux/rtc.h> /* get the user-level API */
#include <linux/spinlock.h> /* spinlock_t */
#include <linux/mc146818rtc.h> #include <linux/mc146818rtc.h>
/* Register A */ /* Register A */
......
...@@ -52,6 +52,7 @@ struct ipc_perm ...@@ -52,6 +52,7 @@ struct ipc_perm
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/kref.h> #include <linux/kref.h>
#include <linux/spinlock.h>
#define IPCMNI 32768 /* <= MAX_INT limit for ipc arrays (including sysctl changes) */ #define IPCMNI 32768 /* <= MAX_INT limit for ipc arrays (including sysctl changes) */
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
#define __LINUX_LEDS_H_INCLUDED #define __LINUX_LEDS_H_INCLUDED
#include <linux/list.h> #include <linux/list.h>
#include <linux/spinlock.h>
struct device; struct device;
struct class_device; struct class_device;
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
* Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996 * Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
* Rewritten again by Rusty Russell, 2002 * Rewritten again by Rusty Russell, 2002
*/ */
#include <linux/spinlock.h>
#include <linux/list.h> #include <linux/list.h>
#include <linux/stat.h> #include <linux/stat.h>
#include <linux/compiler.h> #include <linux/compiler.h>
......
#ifndef __LINUX_PERCPU_H #ifndef __LINUX_PERCPU_H
#define __LINUX_PERCPU_H #define __LINUX_PERCPU_H
#include <linux/spinlock.h> /* For preempt_disable() */ #include <linux/preempt.h>
#include <linux/slab.h> /* For kmalloc() */ #include <linux/slab.h> /* For kmalloc() */
#include <linux/smp.h> #include <linux/smp.h>
#include <linux/string.h> /* For memset() */ #include <linux/string.h> /* For memset() */
......
#include <linux/spinlock.h>
u32 scx200_gpio_configure(unsigned index, u32 set, u32 clear); u32 scx200_gpio_configure(unsigned index, u32 set, u32 clear);
extern unsigned scx200_gpio_base; extern unsigned scx200_gpio_base;
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
#include <linux/list.h> #include <linux/list.h>
#include <linux/spinlock.h>
/* /*
* Real Time signals may be queued. * Real Time signals may be queued.
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
#ifdef CONFIG_LOCK_KERNEL #ifdef CONFIG_LOCK_KERNEL
#include <linux/sched.h> #include <linux/sched.h>
#include <linux/spinlock.h>
#define kernel_locked() (current->lock_depth >= 0) #define kernel_locked() (current->lock_depth >= 0)
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
#include <linux/list.h> #include <linux/list.h>
#include <linux/ktime.h> #include <linux/ktime.h>
#include <linux/spinlock.h>
#include <linux/stddef.h> #include <linux/stddef.h>
struct tvec_t_base_s; struct tvec_t_base_s;
......
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