diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2014-01-03 01:23:47 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-08 02:05:21 +0100 |
commit | f8e87cb4a19aa5f5a1ce22e130da0f4a7fa2d5f3 (patch) | |
tree | f3ba0ca8e995ab7045000f74bad713987e8cd1ba /drivers/tty/tty_buffer.c | |
parent | Merge 3.13-rc5 into tty-next (diff) | |
download | linux-f8e87cb4a19aa5f5a1ce22e130da0f4a7fa2d5f3.tar.xz linux-f8e87cb4a19aa5f5a1ce22e130da0f4a7fa2d5f3.zip |
tty: delete non-required instances of include <linux/init.h>
None of these files are actually using any __init type directives
and hence don't need to include <linux/init.h>. Most are just a
left over from __devinit and __cpuinit removal, or simply due to
code getting copied from one driver to the next.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/tty_buffer.c')
-rw-r--r-- | drivers/tty/tty_buffer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/tty_buffer.c b/drivers/tty/tty_buffer.c index 3002e20e10d7..765125dff20e 100644 --- a/drivers/tty/tty_buffer.c +++ b/drivers/tty/tty_buffer.c @@ -11,7 +11,6 @@ #include <linux/string.h> #include <linux/slab.h> #include <linux/sched.h> -#include <linux/init.h> #include <linux/wait.h> #include <linux/bitops.h> #include <linux/delay.h> |