提交 ae6021d4 编写于 作者: M Madalin Bucur 提交者: David S. Miller

powerpc: fsl/fman: remove fsl,fman from of_device_ids[]

The fsl/fman drivers will use of_platform_populate() on all
supported platforms. Call of_platform_populate() to probe the
FMan sub-nodes.
Signed-off-by: NIgal Liberman <igal.liberman@freescale.com>
Signed-off-by: NMadalin Bucur <madalin.bucur@nxp.com>
Acked-by: NScott Wood <oss@buserror.net>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 606987b0
...@@ -117,9 +117,6 @@ static const struct of_device_id of_device_ids[] = { ...@@ -117,9 +117,6 @@ static const struct of_device_id of_device_ids[] = {
{ {
.compatible = "fsl,qe", .compatible = "fsl,qe",
}, },
{
.compatible = "fsl,fman",
},
/* The following two are for the Freescale hypervisor */ /* The following two are for the Freescale hypervisor */
{ {
.name = "hypervisor", .name = "hypervisor",
......
...@@ -2868,6 +2868,13 @@ static struct fman *read_dts_node(struct platform_device *of_dev) ...@@ -2868,6 +2868,13 @@ static struct fman *read_dts_node(struct platform_device *of_dev)
fman->dev = &of_dev->dev; fman->dev = &of_dev->dev;
err = of_platform_populate(fm_node, NULL, NULL, &of_dev->dev);
if (err) {
dev_err(&of_dev->dev, "%s: of_platform_populate() failed\n",
__func__);
goto fman_free;
}
return fman; return fman;
fman_node_put: fman_node_put:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册