mtd: parser_imagetag: add of_match_table support
authorJonas Gorski <jonas.gorski@gmail.com>
Thu, 28 Mar 2019 14:19:10 +0000 (15:19 +0100)
committerRichard Weinberger <richard@nod.at>
Mon, 6 May 2019 19:46:45 +0000 (21:46 +0200)
Allow matching the imagetag parser for fixed partitions defined in the
device tree.

Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
drivers/mtd/parsers/parser_imagetag.c

index 74b66d009b5c99e553a0863e1849bf4cd9964201..9537c183a3be1ffa3063eb053cb60fdd6d63298f 100644 (file)
@@ -24,6 +24,7 @@
 #include <linux/vmalloc.h>
 #include <linux/mtd/mtd.h>
 #include <linux/mtd/partitions.h>
+#include <linux/of.h>
 
 /* Ensure strings read from flash structs are null terminated */
 #define STR_NULL_TERMINATE(x) \
@@ -200,9 +201,16 @@ out:
        return nrparts;
 }
 
+static const struct of_device_id parse_bcm963xx_imagetag_match_table[] = {
+       { .compatible = "brcm,bcm963xx-imagetag" },
+       {},
+};
+MODULE_DEVICE_TABLE(of, parse_bcm963xx_imagetag_match_table);
+
 static struct mtd_part_parser bcm963xx_imagetag_parser = {
        .parse_fn = bcm963xx_parse_imagetag_partitions,
        .name = "bcm963xx-imagetag",
+       .of_match_table = parse_bcm963xx_imagetag_match_table,
 };
 module_mtd_part_parser(bcm963xx_imagetag_parser);