提交 e270bca5 编写于 作者: B Brian Norris

mtd: ofpart: drop 'of_node' partition parser data

This field is no longer used anywhere, as it is superseded by
mtd->dev.of_node.
Signed-off-by: NBrian Norris <computersforpeace@gmail.com>
Reviewed-by: NBoris Brezillon <boris.brezillon@free-electrons.com>
上级 004b5e60
...@@ -37,11 +37,8 @@ static int parse_ofpart_partitions(struct mtd_info *master, ...@@ -37,11 +37,8 @@ static int parse_ofpart_partitions(struct mtd_info *master,
bool dedicated = true; bool dedicated = true;
/* /* Pull of_node from the master device node */
* of_node can be provided through auxiliary parser data or (preferred) mtd_node = mtd_get_of_node(master);
* by assigning the master device node
*/
mtd_node = data && data->of_node ? data->of_node : mtd_get_of_node(master);
if (!mtd_node) if (!mtd_node)
return 0; return 0;
...@@ -150,11 +147,8 @@ static int parse_ofoldpart_partitions(struct mtd_info *master, ...@@ -150,11 +147,8 @@ static int parse_ofoldpart_partitions(struct mtd_info *master,
} *part; } *part;
const char *names; const char *names;
/* /* Pull of_node from the master device node */
* of_node can be provided through auxiliary parser data or (preferred) dp = mtd_get_of_node(master);
* by assigning the master device node
*/
dp = data && data->of_node ? data->of_node : mtd_get_of_node(master);
if (!dp) if (!dp)
return 0; return 0;
......
...@@ -56,13 +56,9 @@ struct device_node; ...@@ -56,13 +56,9 @@ struct device_node;
/** /**
* struct mtd_part_parser_data - used to pass data to MTD partition parsers. * struct mtd_part_parser_data - used to pass data to MTD partition parsers.
* @origin: for RedBoot, start address of MTD device * @origin: for RedBoot, start address of MTD device
* @of_node: for OF parsers, device node containing partitioning information.
* This field is deprecated, as the device node should simply be
* assigned to the master struct device.
*/ */
struct mtd_part_parser_data { struct mtd_part_parser_data {
unsigned long origin; unsigned long origin;
struct device_node *of_node;
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册