diff options
author | Josh Radel <jradel@gmail.com> | 2012-11-14 17:11:32 -0500 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-11-22 03:14:22 -0500 |
commit | ab0b00bc6ebcfbff42dedb3bf53f0ece79b27e88 (patch) | |
tree | 7a82a6de10c0a9c87d13e3c7470d3a746ae2733b /drivers/mtd/ofpart.c | |
parent | 9b7ef60ce15c5f668c0da30a39ed9b315d3d7ff0 (diff) |
mtd: ofpart: Replicate mtd cmdline "lk" option with device tree "lock" property
The mtd partition command line parser already supports a "lk" option to mask
MTD_POWERUP_LOCK. This extends that same functionality to device tree
partition specifications.
Signed-off-by: Josh Radel <jradel@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/ofpart.c')
-rw-r--r-- | drivers/mtd/ofpart.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mtd/ofpart.c b/drivers/mtd/ofpart.c index d9127e2ed808..dbd3aa574eaf 100644 --- a/drivers/mtd/ofpart.c +++ b/drivers/mtd/ofpart.c | |||
@@ -71,7 +71,10 @@ static int parse_ofpart_partitions(struct mtd_info *master, | |||
71 | (*pparts)[i].name = (char *)partname; | 71 | (*pparts)[i].name = (char *)partname; |
72 | 72 | ||
73 | if (of_get_property(pp, "read-only", &len)) | 73 | if (of_get_property(pp, "read-only", &len)) |
74 | (*pparts)[i].mask_flags = MTD_WRITEABLE; | 74 | (*pparts)[i].mask_flags |= MTD_WRITEABLE; |
75 | |||
76 | if (of_get_property(pp, "lock", &len)) | ||
77 | (*pparts)[i].mask_flags |= MTD_POWERUP_LOCK; | ||
75 | 78 | ||
76 | i++; | 79 | i++; |
77 | } | 80 | } |