diff options
author | Geordan Neukum <gneukum1@gmail.com> | 2019-05-22 14:14:00 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-22 14:47:16 +0200 |
commit | 32806b33fee8200b18702a93d693017c6445b2c9 (patch) | |
tree | 10aedf3f5e71ca13b16bdedc1a32c525c7324978 | |
parent | staging: kpc2000: kpc_i2c: newline fixups to meet linux style guide (diff) | |
download | linux-32806b33fee8200b18702a93d693017c6445b2c9.tar.xz linux-32806b33fee8200b18702a93d693017c6445b2c9.zip |
staging: kpc2000: kpc_i2c: use <linux/io.h> instead of <asm/io.h>
Rather than include asm/io.h, include linux/io.h. Issue reported
by the script checkpatch.pl.
Signed-off-by: Geordan Neukum <gneukum1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/kpc2000/kpc2000_i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/kpc2000/kpc2000_i2c.c b/drivers/staging/kpc2000/kpc2000_i2c.c index a1ebc2386d70..5d98ed54c05c 100644 --- a/drivers/staging/kpc2000/kpc2000_i2c.c +++ b/drivers/staging/kpc2000/kpc2000_i2c.c @@ -19,7 +19,7 @@ #include <linux/init.h> #include <linux/module.h> #include <linux/types.h> -#include <asm/io.h> +#include <linux/io.h> #include <linux/io-64-nonatomic-lo-hi.h> #include <linux/export.h> #include <linux/slab.h> |