2020-10-24 19:14:16 +00:00
|
|
|
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
|
|
|
|
Subject: [PATCH] mtd: redboot: add of_match_table with DT binding
|
|
|
|
MIME-Version: 1.0
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
|
|
|
|
This allows parsing RedBoot compatible partitions for properly described
|
|
|
|
flash device in DT.
|
|
|
|
|
|
|
|
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
|
|
|
|
---
|
|
|
|
|
|
|
|
--- a/drivers/mtd/parsers/redboot.c
|
|
|
|
+++ b/drivers/mtd/parsers/redboot.c
|
2021-07-14 16:42:28 +00:00
|
|
|
@@ -305,6 +305,7 @@ static int parse_redboot_partitions(stru
|
2020-10-24 19:14:16 +00:00
|
|
|
|
|
|
|
static const struct of_device_id mtd_parser_redboot_of_match_table[] = {
|
|
|
|
{ .compatible = "redboot-fis" },
|
|
|
|
+ { .compatible = "ecoscentric,redboot-fis-partitions" },
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, mtd_parser_redboot_of_match_table);
|