projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ca14e1
)
mtd: ms02-nv: remove superfluous name cast
author
Geert Uytterhoeven
<geert@linux-m68k.org>
Tue, 12 Nov 2013 19:07:23 +0000
(20:07 +0100)
committer
Brian Norris
<computersforpeace@gmail.com>
Fri, 3 Jan 2014 19:22:09 +0000
(11:22 -0800)
mtd_info.name is "const char *"
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: linux-mtd@lists.infradead.org
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/devices/ms02-nv.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/devices/ms02-nv.c
b/drivers/mtd/devices/ms02-nv.c
index 182849d39c61acb34c40a79ab6bf04e30162da79..5c8b322ba904b1691bf204efc3f4523106dc8f67 100644
(file)
--- a/
drivers/mtd/devices/ms02-nv.c
+++ b/
drivers/mtd/devices/ms02-nv.c
@@
-205,7
+205,7
@@
static int __init ms02nv_init_one(ulong addr)
mtd->type = MTD_RAM;
mtd->flags = MTD_CAP_RAM;
mtd->size = fixsize;
- mtd->name =
(char *)
ms02nv_name;
+ mtd->name = ms02nv_name;
mtd->owner = THIS_MODULE;
mtd->_read = ms02nv_read;
mtd->_write = ms02nv_write;