diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2014-09-01 15:15:00 +0100 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-01-11 11:59:00 +0000 |
commit | 36eb8cc2cedadee888deb9a657a10be159f2dc0b (patch) | |
tree | 110e4927b5ea7a5f6236b68f475c28c08c9c079f /drivers/iio/imu | |
parent | 92a18a841bb0d561a937796eeb40981be94b9dc7 (diff) | |
download | talos-op-linux-36eb8cc2cedadee888deb9a657a10be159f2dc0b.tar.gz talos-op-linux-36eb8cc2cedadee888deb9a657a10be159f2dc0b.zip |
iio: 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: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/imu')
-rw-r--r-- | drivers/iio/imu/inv_mpu6050/inv_mpu_core.c | 1 | ||||
-rw-r--r-- | drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c index df7f1e1157ae..bf7223b275ac 100644 --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_core.c @@ -12,7 +12,6 @@ */ #include <linux/module.h> -#include <linux/init.h> #include <linux/slab.h> #include <linux/i2c.h> #include <linux/err.h> diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c index 429517117eff..0cd306a72a6e 100644 --- a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c +++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c @@ -12,7 +12,6 @@ */ #include <linux/module.h> -#include <linux/init.h> #include <linux/slab.h> #include <linux/i2c.h> #include <linux/err.h> |