Browse Source

kernel: add DT binding support to the Edimax uImage parser

It allows specifying those parsers directly in the DT.

Signed-off-by: Mathias Kresin <[email protected]>
Mathias Kresin 6 years ago
parent
commit
116d0f276d
1 changed files with 10 additions and 0 deletions
  1. 10 0
      target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_uimage.c

+ 10 - 0
target/linux/generic/files/drivers/mtd/mtdsplit/mtdsplit_uimage.c

@@ -359,9 +359,19 @@ mtdsplit_uimage_parse_edimax(struct mtd_info *master,
 				       uimage_find_edimax);
 				       uimage_find_edimax);
 }
 }
 
 
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
+static const struct of_device_id mtdsplit_uimage_edimax_of_match_table[] = {
+	{ .compatible = "edimax,uimage" },
+	{},
+};
+#endif
+
 static struct mtd_part_parser uimage_edimax_parser = {
 static struct mtd_part_parser uimage_edimax_parser = {
 	.owner = THIS_MODULE,
 	.owner = THIS_MODULE,
 	.name = "edimax-fw",
 	.name = "edimax-fw",
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
+	.of_match_table = mtdsplit_uimage_edimax_of_match_table,
+#endif
 	.parse_fn = mtdsplit_uimage_parse_edimax,
 	.parse_fn = mtdsplit_uimage_parse_edimax,
 	.type = MTD_PARSER_TYPE_FIRMWARE,
 	.type = MTD_PARSER_TYPE_FIRMWARE,
 };
 };