mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
fsl/fman: fix dereference null return value
[ Upstream commit0572054617] Check before using returned value to avoid dereferencing null pointer. Fixes:18a6c85fcc("fsl/fman: Add FMan Port Support") Signed-off-by: Florinel Iordache <florinel.iordache@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
eb8119b993
commit
0d2a776e60
@@ -1623,6 +1623,7 @@ static int fman_port_probe(struct platform_device *of_dev)
|
||||
struct fman_port *port;
|
||||
struct fman *fman;
|
||||
struct device_node *fm_node, *port_node;
|
||||
struct platform_device *fm_pdev;
|
||||
struct resource res;
|
||||
struct resource *dev_res;
|
||||
u32 val;
|
||||
@@ -1647,8 +1648,14 @@ static int fman_port_probe(struct platform_device *of_dev)
|
||||
goto return_err;
|
||||
}
|
||||
|
||||
fman = dev_get_drvdata(&of_find_device_by_node(fm_node)->dev);
|
||||
fm_pdev = of_find_device_by_node(fm_node);
|
||||
of_node_put(fm_node);
|
||||
if (!fm_pdev) {
|
||||
err = -EINVAL;
|
||||
goto return_err;
|
||||
}
|
||||
|
||||
fman = dev_get_drvdata(&fm_pdev->dev);
|
||||
if (!fman) {
|
||||
err = -EINVAL;
|
||||
goto return_err;
|
||||
|
||||
Reference in New Issue
Block a user