diff options
author | Rob Ward <robert.ward114@googlemail.com> | 2014-10-21 20:01:09 +0100 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2014-10-22 01:59:30 -0700 |
commit | b85b8d92c1d720a5b2229aa1bad9bd77f09b8ec5 (patch) | |
tree | ff4b04a310650b0a0d913e61d5ec1bfbed84f64a /drivers/mtd/devices/phram.c | |
parent | 77adc085aee0c96dc3536403b197707316c7c241 (diff) |
mtd: phram: fix asm/io.h include usage
Modify phram to include <linux/io.h> rather than <asm/io.h>
Signed-off-by: Rob Ward <robert.ward114@googlemail.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/devices/phram.c')
-rw-r--r-- | drivers/mtd/devices/phram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/phram.c b/drivers/mtd/devices/phram.c index effd9a4ef7ee..8b66e52ca3cc 100644 --- a/drivers/mtd/devices/phram.c +++ b/drivers/mtd/devices/phram.c @@ -17,7 +17,7 @@ #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt -#include <asm/io.h> +#include <linux/io.h> #include <linux/init.h> #include <linux/kernel.h> #include <linux/list.h> |