diff options
author | Ingo Molnar <mingo@kernel.org> | 2017-02-05 16:15:03 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-03-02 08:42:41 +0100 |
commit | b69339ba109549beeaf45c45c52ac7025bfcd954 (patch) | |
tree | f805b70f8e1667dcb2b030bd4bb72257de956292 /include | |
parent | 50d34394cee68dd12c5e01fff073d1167700bfce (diff) | |
download | op-kernel-dev-b69339ba109549beeaf45c45c52ac7025bfcd954.zip op-kernel-dev-b69339ba109549beeaf45c45c52ac7025bfcd954.tar.gz |
sched/headers: Prepare to remove spurious <linux/sched.h> inclusion dependencies
In the following patches we are going to remove various headers
from sched.h and other headers that sched.h includes.
To make those patches build cleanly prepare the scene by adding
dependencies to various files that learned to rely on those
to-be-removed dependencies.
These changes all make sense standalone: they add a header for
a data type that a particular .c or .h file is using.
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 1 | ||||
-rw-r--r-- | include/sound/control.h | 1 | ||||
-rw-r--r-- | include/target/target_core_base.h | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index ea05116..b5c6d60 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -18,6 +18,7 @@ struct sched_param { #include <linux/types.h> #include <linux/timex.h> #include <linux/jiffies.h> +#include <linux/mutex.h> #include <linux/plist.h> #include <linux/rbtree.h> #include <linux/thread_info.h> diff --git a/include/sound/control.h b/include/sound/control.h index 21d047f..bd7246d 100644 --- a/include/sound/control.h +++ b/include/sound/control.h @@ -22,6 +22,7 @@ * */ +#include <linux/wait.h> #include <sound/asound.h> #define snd_kcontrol_chip(kcontrol) ((kcontrol)->private_data) diff --git a/include/target/target_core_base.h b/include/target/target_core_base.h index 878560e..8be9ba7 100644 --- a/include/target/target_core_base.h +++ b/include/target/target_core_base.h @@ -5,6 +5,7 @@ #include <linux/dma-direction.h> /* enum dma_data_direction */ #include <linux/percpu_ida.h> /* struct percpu_ida */ #include <linux/semaphore.h> /* struct semaphore */ +#include <linux/completion.h> #define TARGET_CORE_VERSION "v5.0" |