kernel: add DT binding support to the Seama parser
It allows specifying that parser directly in the DT. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
parent
1dcaef8410
commit
dab5a93086
1 changed files with 13 additions and 0 deletions
|
@ -93,9 +93,22 @@ static int mtdsplit_parse_seama(struct mtd_info *master,
|
||||||
return SEAMA_NR_PARTS;
|
return SEAMA_NR_PARTS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#include <linux/version.h>
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
|
||||||
|
static const struct of_device_id mtdsplit_seama_of_match_table[] = {
|
||||||
|
{ .compatible = "seama" },
|
||||||
|
{},
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, mtdsplit_seama_of_match_table);
|
||||||
|
#endif
|
||||||
|
|
||||||
static struct mtd_part_parser mtdsplit_seama_parser = {
|
static struct mtd_part_parser mtdsplit_seama_parser = {
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.name = "seama-fw",
|
.name = "seama-fw",
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
|
||||||
|
.of_match_table = mtdsplit_seama_of_match_table,
|
||||||
|
#endif
|
||||||
.parse_fn = mtdsplit_parse_seama,
|
.parse_fn = mtdsplit_parse_seama,
|
||||||
.type = MTD_PARSER_TYPE_FIRMWARE,
|
.type = MTD_PARSER_TYPE_FIRMWARE,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue