[PATCH] MIPS: Alchemy: add missing platform_set_drvdata() in au1550nd_probe()

From: Wei Yongjun
Date: Mon Nov 11 2013 - 01:18:41 EST


From: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx>

Add missing platform_set_drvdata() in au1550nd_probe(), otherwise
calling platform_get_drvdata() in remove returns NULL.

Signed-off-by: Wei Yongjun <yongjun_wei@xxxxxxxxxxxxxxxxx>
---
drivers/mtd/nand/au1550nd.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/mtd/nand/au1550nd.c b/drivers/mtd/nand/au1550nd.c
index ae8dd7c..909b673 100644
--- a/drivers/mtd/nand/au1550nd.c
+++ b/drivers/mtd/nand/au1550nd.c
@@ -480,6 +480,8 @@ static int au1550nd_probe(struct platform_device *pdev)

mtd_device_register(&ctx->info, pd->parts, pd->num_parts);

+ platform_set_drvdata(pdev, ctx);
+
return 0;

out3:

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/