Browse Source

kernel: add DT binding support to the LZMA and WRG parsers

It allows specifying those parsers directly in the DT.

Signed-off-by: Rafał Miłecki <[email protected]>
Rafał Miłecki 7 years ago
parent
commit
2abb128f2e

+ 7 - 0
target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_lzma.c

@@ -79,9 +79,16 @@ static int mtdsplit_parse_lzma(struct mtd_info *master,
 	return LZMA_NR_PARTS;
 }
 
+static const struct of_device_id mtdsplit_lzma_of_match_table[] = {
+	{ .compatible = "lzma" },
+	{},
+};
+MODULE_DEVICE_TABLE(of, mtdsplit_lzma_of_match_table);
+
 static struct mtd_part_parser mtdsplit_lzma_parser = {
 	.owner = THIS_MODULE,
 	.name = "lzma-fw",
+	.of_match_table = mtdsplit_lzma_of_match_table,
 	.parse_fn = mtdsplit_parse_lzma,
 	.type = MTD_PARSER_TYPE_FIRMWARE,
 };

+ 7 - 0
target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_wrgg.c

@@ -107,9 +107,16 @@ static int mtdsplit_parse_wrgg(struct mtd_info *master,
 	return WRGG_NR_PARTS;
 }
 
+static const struct of_device_id mtdsplit_wrgg_of_match_table[] = {
+	{ .compatible = "wrg" },
+	{},
+};
+MODULE_DEVICE_TABLE(of, mtdsplit_wrgg_of_match_table);
+
 static struct mtd_part_parser mtdsplit_wrgg_parser = {
 	.owner = THIS_MODULE,
 	.name = "wrgg-fw",
+	.of_match_table = mtdsplit_wrgg_of_match_table,
 	.parse_fn = mtdsplit_parse_wrgg,
 	.type = MTD_PARSER_TYPE_FIRMWARE,
 };