diff options
author | David Howells <dhowells@redhat.com> | 2008-07-08 16:09:03 (GMT) |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-07-11 17:24:38 (GMT) |
commit | 36560d255b017dbcaefbf0f8fee7ad4dd1f0fe0a (patch) | |
tree | 167b8b3fef6d4ec2605c045558fe0e427d5cd723 /drivers/mtd | |
parent | 3a3688b6af103e2c86a7cfc2050988655e184ecc (diff) | |
download | linux-36560d255b017dbcaefbf0f8fee7ad4dd1f0fe0a.tar.xz |
[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>
Diffstat (limited to 'drivers/mtd')
-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 68782ab..71bc07f 100644 --- a/drivers/mtd/cmdlinepart.c +++ b/drivers/mtd/cmdlinepart.c @@ -306,7 +306,7 @@ static int parse_cmdline_partitions(struct mtd_info *master, unsigned long offset; int i; struct cmdline_mtd_partition *part; - char *mtd_id = master->name; + const char *mtd_id = master->name; /* parse command line */ if (!cmdline_parsed) |