kernel: drop unneeded LINUX_VERSION_CODE checks
[openwrt/staging/chunkeey.git] / target / linux / generic / files / drivers / mtd / mtdsplit / mtdsplit_tplink.c
index ff4a474d5456b8cd88f2124c94d3cf41712dd98a..a6ae1440db310f9b65e6d56ed0e5600a83ee8da2 100644 (file)
@@ -14,7 +14,6 @@
 #include <linux/slab.h>
 #include <linux/mtd/mtd.h>
 #include <linux/mtd/partitions.h>
-#include <linux/version.h>
 #include <linux/byteorder/generic.h>
 
 #include "mtdsplit.h"
@@ -153,19 +152,15 @@ static int mtdsplit_parse_tplink(struct mtd_info *master,
        return TPLINK_NR_PARTS;
 }
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
 static const struct of_device_id mtdsplit_tplink_of_match_table[] = {
        { .compatible = "tplink,firmware" },
        {},
 };
-#endif
 
 static struct mtd_part_parser mtdsplit_tplink_parser = {
        .owner = THIS_MODULE,
        .name = "tplink-fw",
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
        .of_match_table = mtdsplit_tplink_of_match_table,
-#endif
        .parse_fn = mtdsplit_parse_tplink,
        .type = MTD_PARSER_TYPE_FIRMWARE,
 };