提交 53cd2681 编写于 作者: B Boris BREZILLON 提交者: Brian Norris

mtd: nand: orion: use the mtd instance embedded in struct nand_chip

struct nand_chip now embeds an mtd device. Make use of this mtd instance.
Signed-off-by: NBoris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: NBrian Norris <computersforpeace@gmail.com>
上级 432420c0
...@@ -85,11 +85,11 @@ static int __init orion_nand_probe(struct platform_device *pdev) ...@@ -85,11 +85,11 @@ static int __init orion_nand_probe(struct platform_device *pdev)
u32 val = 0; u32 val = 0;
nc = devm_kzalloc(&pdev->dev, nc = devm_kzalloc(&pdev->dev,
sizeof(struct nand_chip) + sizeof(struct mtd_info), sizeof(struct nand_chip),
GFP_KERNEL); GFP_KERNEL);
if (!nc) if (!nc)
return -ENOMEM; return -ENOMEM;
mtd = (struct mtd_info *)(nc + 1); mtd = nand_to_mtd(nc);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
io_base = devm_ioremap_resource(&pdev->dev, res); io_base = devm_ioremap_resource(&pdev->dev, res);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册