From: Rafał Miłecki Date: Sun, 9 Dec 2018 12:58:54 +0000 (+0100) Subject: kernel: add DT binding support to the TRX and minor parsers X-Git-Url: http://git.openwrt.org/openwrt/feeds.git?a=commitdiff_plain;h=4d3a53b9ef8f47d308875fe0be20585fa40726d0;p=openwrt%2Fstaging%2Flynxis.git kernel: add DT binding support to the TRX and minor parsers It allows specifying those parsers directly in the DT. Signed-off-by: Rafał Miłecki --- diff --git a/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_minor.c b/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_minor.c index f971f0a650..d709a13cf6 100644 --- a/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_minor.c +++ b/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_minor.c @@ -100,9 +100,22 @@ static int mtdsplit_parse_minor(struct mtd_info *master, return MINOR_NR_PARTS; } +#include + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) +static const struct of_device_id mtdsplit_minor_of_match_table[] = { + { .compatible = "mikrotik,minor" }, + {}, +}; +MODULE_DEVICE_TABLE(of, mtdsplit_minor_of_match_table); +#endif + static struct mtd_part_parser mtdsplit_minor_parser = { .owner = THIS_MODULE, .name = "minor-fw", +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) + .of_match_table = mtdsplit_minor_of_match_table, +#endif .parse_fn = mtdsplit_parse_minor, .type = MTD_PARSER_TYPE_FIRMWARE, }; diff --git a/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_trx.c b/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_trx.c index 53aebc5987..d5e33727b5 100644 --- a/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_trx.c +++ b/target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_trx.c @@ -130,9 +130,22 @@ err: return ret; } +#include + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) +static const struct of_device_id trx_parser_of_match_table[] = { + { .compatible = "openwrt,trx" }, + {}, +}; +MODULE_DEVICE_TABLE(of, trx_parser_of_match_table); +#endif + static struct mtd_part_parser trx_parser = { .owner = THIS_MODULE, .name = "trx-fw", +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) + .of_match_table = trx_parser_of_match_table, +#endif .parse_fn = mtdsplit_parse_trx, .type = MTD_PARSER_TYPE_FIRMWARE, };