mtd/maps: gpio-addr-flash: pull in linux/ headers rather than asm/

Now that there are linux/ versions of gpio.h and io.h, include those
rather than hitting the asm/ versions.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>

authored by Mike Frysinger and committed by David Woodhouse f5bae56a 58475fb9

+2 -3
+2 -3
drivers/mtd/maps/gpio-addr-flash.c
··· 13 13 * Licensed under the GPL-2 or later. 14 14 */ 15 15 16 + #include <linux/gpio.h> 16 17 #include <linux/init.h> 18 + #include <linux/io.h> 17 19 #include <linux/kernel.h> 18 20 #include <linux/module.h> 19 21 #include <linux/mtd/mtd.h> ··· 24 22 #include <linux/mtd/physmap.h> 25 23 #include <linux/platform_device.h> 26 24 #include <linux/types.h> 27 - 28 - #include <asm/gpio.h> 29 - #include <asm/io.h> 30 25 31 26 #define pr_devinit(fmt, args...) ({ static const __devinitconst char __fmt[] = fmt; printk(__fmt, ## args); }) 32 27