[MTD] Fix const assignment in the MTD command line partitioning driver
authorDavid Howells <dhowells@redhat.com>
Tue, 8 Jul 2008 16:09:03 +0000 (17:09 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Fri, 11 Jul 2008 17:24:38 +0000 (18:24 +0100)
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>
drivers/mtd/cmdlinepart.c

index 68782ab..71bc07f 100644 (file)
@@ -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)