diff options
author | Brian Norris <computersforpeace@gmail.com> | 2015-10-30 20:33:29 -0700 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-11-11 13:59:04 -0800 |
commit | e270bca531b40cd0a143176eb093d173b9c6f418 (patch) | |
tree | 82c862e4a59ba94d5d06b479cd29241cd2a3d1c7 /include/linux/mtd | |
parent | 004b5e6031f4e9fd90d565fb213b74cd06d03718 (diff) | |
download | talos-obmc-linux-e270bca531b40cd0a143176eb093d173b9c6f418.tar.gz talos-obmc-linux-e270bca531b40cd0a143176eb093d173b9c6f418.zip |
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: Brian Norris <computersforpeace@gmail.com>
Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/partitions.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h index e742f34b67eb..773975a3c9e6 100644 --- a/include/linux/mtd/partitions.h +++ b/include/linux/mtd/partitions.h @@ -56,13 +56,9 @@ struct device_node; /** * struct mtd_part_parser_data - used to pass data to MTD partition parsers. * @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 { unsigned long origin; - struct device_node *of_node; }; |