ramips: drop support for kernel 4.14
[openwrt/openwrt.git] / target / linux / generic / backport-4.14 / 041-v4.17-0003-mtd-ofpart-add-of_match_table-with-fixed-partitions.patch
1 From 97b0c7c0df3efd7048ed39d7e2dee34cafd55887 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <rafal@milecki.pl>
3 Date: Wed, 14 Mar 2018 13:10:44 +0100
4 Subject: [PATCH] mtd: ofpart: add of_match_table with "fixed-partitions"
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 This allows using this parser with any flash driver that takes care of
10 setting of_node (using mtd_set_of_node helper) correctly. Up to now
11 support for "fixed-partitions" DT compatibility string was working only
12 with flash drivers that were specifying "ofpart" (manually or by letting
13 mtd use the default set of parsers).
14
15 This matches existing bindings documentation.
16
17 Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
18 Reviewed-by: Brian Norris <computersforpeace@gmail.com>
19 Tested-by: Brian Norris <computersforpeace@gmail.com>
20 Reviewed-by: Richard Weinberger <richard@nod.at>
21 Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
22 ---
23 drivers/mtd/ofpart.c | 7 +++++++
24 1 file changed, 7 insertions(+)
25
26 --- a/drivers/mtd/ofpart.c
27 +++ b/drivers/mtd/ofpart.c
28 @@ -140,9 +140,16 @@ ofpart_none:
29 return ret;
30 }
31
32 +static const struct of_device_id parse_ofpart_match_table[] = {
33 + { .compatible = "fixed-partitions" },
34 + {},
35 +};
36 +MODULE_DEVICE_TABLE(of, parse_ofpart_match_table);
37 +
38 static struct mtd_part_parser ofpart_parser = {
39 .parse_fn = parse_fixed_partitions,
40 .name = "fixed-partitions",
41 + .of_match_table = parse_ofpart_match_table,
42 };
43
44 static int parse_ofoldpart_partitions(struct mtd_info *master,