From: Rafał Miłecki Date: Thu, 22 Nov 2018 12:20:04 +0000 (+0100) Subject: kernel: add DT binding support to the uimage parsers X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=a22311e6a6d4fe439dd99281c02c36cfb415a452;p=openwrt%2Fstaging%2Fwigyori.git kernel: add DT binding support to the uimage parsers It allows specifying default and Netgear parsers directly in the DT. Signed-off-by: Rafał Miłecki --- diff --git a/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_uimage.c b/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_uimage.c index bd1c723e74..e9b8314978 100644 --- a/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_uimage.c +++ b/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_uimage.c @@ -16,6 +16,7 @@ #include #include #include +#include #include #include "mtdsplit.h" @@ -239,9 +240,19 @@ mtdsplit_uimage_parse_generic(struct mtd_info *master, uimage_verify_default); } +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) +static const struct of_device_id mtdsplit_uimage_of_match_table[] = { + { .compatible = "denx,uimage" }, + {}, +}; +#endif + static struct mtd_part_parser uimage_generic_parser = { .owner = THIS_MODULE, .name = "uimage-fw", +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) + .of_match_table = mtdsplit_uimage_of_match_table, +#endif .parse_fn = mtdsplit_uimage_parse_generic, .type = MTD_PARSER_TYPE_FIRMWARE, }; @@ -296,9 +307,19 @@ mtdsplit_uimage_parse_netgear(struct mtd_info *master, uimage_verify_wndr3700); } +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) +static const struct of_device_id mtdsplit_uimage_netgear_of_match_table[] = { + { .compatible = "netgear,uimage" }, + {}, +}; +#endif + static struct mtd_part_parser uimage_netgear_parser = { .owner = THIS_MODULE, .name = "netgear-fw", +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) + .of_match_table = mtdsplit_uimage_netgear_of_match_table, +#endif .parse_fn = mtdsplit_uimage_parse_netgear, .type = MTD_PARSER_TYPE_FIRMWARE, };