Skip to content

Commit

Permalink
kernel: add DT binding support to AVM EVA parser
Browse files Browse the repository at this point in the history
It allows selecting split-firmware parser directly by
specifying image-format in the device-tree.

Signed-off-by: David Bauer <mail@david-bauer.net>
  • Loading branch information
blocktrron authored and blogic committed Dec 6, 2018
1 parent 26dcaf5 commit 68e59b6
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -79,9 +79,15 @@ static int mtdsplit_parse_eva(struct mtd_info *master,
return EVA_NR_PARTS; return EVA_NR_PARTS;
} }


static const struct of_device_id mtdsplit_eva_of_match_table[] = {
{ .compatible = "avm,eva-firmware" },
{},
};

static struct mtd_part_parser mtdsplit_eva_parser = { static struct mtd_part_parser mtdsplit_eva_parser = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = "eva-fw", .name = "eva-fw",
.of_match_table = mtdsplit_eva_of_match_table,
.parse_fn = mtdsplit_parse_eva, .parse_fn = mtdsplit_parse_eva,
.type = MTD_PARSER_TYPE_FIRMWARE, .type = MTD_PARSER_TYPE_FIRMWARE,
}; };
Expand Down

0 comments on commit 68e59b6

Please sign in to comment.