summaryrefslogtreecommitdiff
path: root/drivers/mtd/maps
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2013-09-09 05:42:52 (GMT)
committerBrian Norris <computersforpeace@gmail.com>2013-10-27 23:27:07 (GMT)
commit14ac07856fee903879f11932e313695de8156e9c (patch)
treee20ea2b069b2f99680ce787d033171ade6627a79 /drivers/mtd/maps
parent963d1c285fdf3b9ce93b575b879c1cba4a23d958 (diff)
downloadlinux-14ac07856fee903879f11932e313695de8156e9c.tar.xz
mtd: plat-ram: Remove casting the return value which is a void pointer
Casting the return value which is a void pointer is redundant. The conversion from void pointer to any other pointer type is guaranteed by the C programming language. Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r--drivers/mtd/maps/plat-ram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/plat-ram.c b/drivers/mtd/maps/plat-ram.c
index 6762716..3e35b9a 100644
--- a/drivers/mtd/maps/plat-ram.c
+++ b/drivers/mtd/maps/plat-ram.c
@@ -55,7 +55,7 @@ struct platram_info {
static inline struct platram_info *to_platram_info(struct platform_device *dev)
{
- return (struct platram_info *)platform_get_drvdata(dev);
+ return platform_get_drvdata(dev);
}
/* platram_setrw