diff options
4 files changed, 20 insertions, 5 deletions
diff --git a/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c b/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c index 0b6ba1fcec..26f14fdac6 100644 --- a/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c +++ b/target/linux/ar71xx/files/drivers/mtd/nand/ar934x_nfc.c @@ -8,17 +8,21 @@ * by the Free Software Foundation. */ +#include <linux/version.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/module.h> #include <linux/dma-mapping.h> #include <linux/mtd/mtd.h> +#if LINUX_VERSION_CODE < KERNEL_VERSION(4,14,0) +#include <linux/mtd/nand.h> +#else #include <linux/mtd/rawnand.h> +#endif #include <linux/mtd/partitions.h> #include <linux/platform_device.h> #include <linux/delay.h> #include <linux/slab.h> -#include <linux/version.h> #include <linux/platform/ar934x_nfc.h> diff --git a/target/linux/ar71xx/files/drivers/mtd/nand/rb4xx_nand.c b/target/linux/ar71xx/files/drivers/mtd/nand/rb4xx_nand.c index 262e3fa09d..717a94237c 100644 --- a/target/linux/ar71xx/files/drivers/mtd/nand/rb4xx_nand.c +++ b/target/linux/ar71xx/files/drivers/mtd/nand/rb4xx_nand.c @@ -12,10 +12,15 @@ * by the Free Software Foundation. */ +#include <linux/version.h> #include <linux/kernel.h> #include <linux/module.h> #include <linux/init.h> +#if LINUX_VERSION_CODE < KERNEL_VERSION(4,14,0) +#include <linux/mtd/nand.h> +#else #include <linux/mtd/rawnand.h> +#endif #include <linux/mtd/mtd.h> #include <linux/mtd/partitions.h> #include <linux/platform_device.h> @@ -23,7 +28,6 @@ #include <linux/io.h> #include <linux/gpio.h> #include <linux/slab.h> -#include <linux/version.h> #include <asm/mach-ath79/ath79.h> #include <asm/mach-ath79/rb4xx_cpld.h> diff --git a/target/linux/ar71xx/files/drivers/mtd/nand/rb750_nand.c b/target/linux/ar71xx/files/drivers/mtd/nand/rb750_nand.c index d12be88520..74f7f2913e 100644 --- a/target/linux/ar71xx/files/drivers/mtd/nand/rb750_nand.c +++ b/target/linux/ar71xx/files/drivers/mtd/nand/rb750_nand.c @@ -8,15 +8,19 @@ * by the Free Software Foundation. */ +#include <linux/version.h> #include <linux/kernel.h> #include <linux/module.h> +#if LINUX_VERSION_CODE < KERNEL_VERSION(4,14,0) +#include <linux/mtd/nand.h> +#else #include <linux/mtd/rawnand.h> +#endif #include <linux/mtd/mtd.h> #include <linux/mtd/partitions.h> #include <linux/platform_device.h> #include <linux/io.h> #include <linux/slab.h> -#include <linux/version.h> #include <asm/mach-ath79/ar71xx_regs.h> #include <asm/mach-ath79/ath79.h> diff --git a/target/linux/ar71xx/files/drivers/mtd/nand/rb91x_nand.c b/target/linux/ar71xx/files/drivers/mtd/nand/rb91x_nand.c index ac50b87fd5..1f193f196c 100644 --- a/target/linux/ar71xx/files/drivers/mtd/nand/rb91x_nand.c +++ b/target/linux/ar71xx/files/drivers/mtd/nand/rb91x_nand.c @@ -8,18 +8,21 @@ * by the Free Software Foundation. */ +#include <linux/version.h> #include <linux/kernel.h> #include <linux/spinlock.h> #include <linux/module.h> +#if LINUX_VERSION_CODE < KERNEL_VERSION(4,14,0) +#include <linux/mtd/nand.h> +#else #include <linux/mtd/rawnand.h> -#include <linux/mtd/mtd.h> +#endif#include <linux/mtd/mtd.h> #include <linux/mtd/partitions.h> #include <linux/platform_device.h> #include <linux/io.h> #include <linux/slab.h> #include <linux/gpio.h> #include <linux/platform_data/rb91x_nand.h> -#include <linux/version.h> #include <asm/mach-ath79/ar71xx_regs.h> #include <asm/mach-ath79/ath79.h> |