Commit 0a8899b3 authored by Brian Norris's avatar Brian Norris

mtd: mtdram: add missing 'const'

mtdram_init_device() wasn't updated along with mtd_partition.name.
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
parent 99ed1a16
...@@ -92,7 +92,7 @@ static void __exit cleanup_mtdram(void) ...@@ -92,7 +92,7 @@ static void __exit cleanup_mtdram(void)
} }
int mtdram_init_device(struct mtd_info *mtd, void *mapped_address, int mtdram_init_device(struct mtd_info *mtd, void *mapped_address,
unsigned long size, char *name) unsigned long size, const char *name)
{ {
memset(mtd, 0, sizeof(*mtd)); memset(mtd, 0, sizeof(*mtd));
......
...@@ -3,6 +3,6 @@ ...@@ -3,6 +3,6 @@
#include <linux/mtd/mtd.h> #include <linux/mtd/mtd.h>
int mtdram_init_device(struct mtd_info *mtd, void *mapped_address, int mtdram_init_device(struct mtd_info *mtd, void *mapped_address,
unsigned long size, char *name); unsigned long size, const char *name);
#endif /* __MTD_MTDRAM_H__ */ #endif /* __MTD_MTDRAM_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment