diff options
| author | Richard Genoud <richard.genoud@gmail.com> | 2012-07-10 12:23:39 -0400 |
|---|---|---|
| committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-09-04 02:38:58 -0400 |
| commit | 5dee4674c8dd4398f4806aae153888319c7e2be9 (patch) | |
| tree | 0fbbd9a5e3ee970d8e6444b9aa2527360ad5052e | |
| parent | 3419cc303f643e3445be954e5590cc0e71c5c461 (diff) | |
mtd: mark mtd_is_partition argument as constant
'struct mtd_info' is not modified by 'mtd_is_partition()' so it can be marked
as "const".
Signed-off-by: Richard Genoud <richard.genoud@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
| -rw-r--r-- | drivers/mtd/mtdpart.c | 2 | ||||
| -rw-r--r-- | include/linux/mtd/partitions.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdpart.c b/drivers/mtd/mtdpart.c index d518e4db8a0b..85005846f30d 100644 --- a/drivers/mtd/mtdpart.c +++ b/drivers/mtd/mtdpart.c | |||
| @@ -744,7 +744,7 @@ int parse_mtd_partitions(struct mtd_info *master, const char **types, | |||
| 744 | return ret; | 744 | return ret; |
| 745 | } | 745 | } |
| 746 | 746 | ||
| 747 | int mtd_is_partition(struct mtd_info *mtd) | 747 | int mtd_is_partition(const struct mtd_info *mtd) |
| 748 | { | 748 | { |
| 749 | struct mtd_part *part; | 749 | struct mtd_part *part; |
| 750 | int ispart = 0; | 750 | int ispart = 0; |
diff --git a/include/linux/mtd/partitions.h b/include/linux/mtd/partitions.h index 2475228c1158..02a51157a173 100644 --- a/include/linux/mtd/partitions.h +++ b/include/linux/mtd/partitions.h | |||
| @@ -79,7 +79,7 @@ struct mtd_part_parser { | |||
| 79 | extern int register_mtd_parser(struct mtd_part_parser *parser); | 79 | extern int register_mtd_parser(struct mtd_part_parser *parser); |
| 80 | extern int deregister_mtd_parser(struct mtd_part_parser *parser); | 80 | extern int deregister_mtd_parser(struct mtd_part_parser *parser); |
| 81 | 81 | ||
| 82 | int mtd_is_partition(struct mtd_info *mtd); | 82 | int mtd_is_partition(const struct mtd_info *mtd); |
| 83 | int mtd_add_partition(struct mtd_info *master, char *name, | 83 | int mtd_add_partition(struct mtd_info *master, char *name, |
| 84 | long long offset, long long length); | 84 | long long offset, long long length); |
| 85 | int mtd_del_partition(struct mtd_info *master, int partno); | 85 | int mtd_del_partition(struct mtd_info *master, int partno); |
