diff options
author | David Howells <dhowells@redhat.com> | 2008-07-08 12:09:03 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 13:24:38 -0400 |
commit | 36560d255b017dbcaefbf0f8fee7ad4dd1f0fe0a (patch) | |
tree | 167b8b3fef6d4ec2605c045558fe0e427d5cd723 | |
parent | 3a3688b6af103e2c86a7cfc2050988655e184ecc (diff) |
[MTD] Fix const assignment in the MTD command line partitioning driver
Fix const to non-const pointer assignment in the MTD command line partitioning
driver.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r-- | drivers/mtd/cmdlinepart.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/cmdlinepart.c b/drivers/mtd/cmdlinepart.c index 68782ab2f0de..71bc07f149b7 100644 --- a/drivers/mtd/cmdlinepart.c +++ b/drivers/mtd/cmdlinepart.c | |||
@@ -306,7 +306,7 @@ static int parse_cmdline_partitions(struct mtd_info *master, | |||
306 | unsigned long offset; | 306 | unsigned long offset; |
307 | int i; | 307 | int i; |
308 | struct cmdline_mtd_partition *part; | 308 | struct cmdline_mtd_partition *part; |
309 | char *mtd_id = master->name; | 309 | const char *mtd_id = master->name; |
310 | 310 | ||
311 | /* parse command line */ | 311 | /* parse command line */ |
312 | if (!cmdline_parsed) | 312 | if (!cmdline_parsed) |