lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <1469586048-15697-11-git-send-email-peter.chen@nxp.com> Date: Wed, 27 Jul 2016 10:20:43 +0800 From: Peter Chen <peter.chen@....com> To: <davem@...emloft.net> CC: <netdev@...r.kernel.org>, <vbridger@...nsource.altera.com>, <isubramanian@....com>, <kchudgar@....com>, <yisen.zhuang@...wei.com>, <salil.mehta@...wei.com>, <thomas.petazzoni@...e-electrons.com>, <sergei.shtylyov@...entembedded.com>, <peppe.cavallaro@...com>, <alexandre.torgue@...com>, <mugunthanvnm@...com>, <tremyfr@...il.com>, <wxt@...k-chips.com>, <arnd@...db.de>, <david.daney@...ium.com>, <huangdaode@...ilicon.com>, <jszhang@...vell.com>, Peter Chen <peter.chen@....com> Subject: [PATCH 10/15] ethernet: marvell: pxa168_eth: add missing of_node_put after calling of_parse_phandle of_node_put needs to be called when the device node which is got from of_parse_phandle has finished using. Signed-off-by: Peter Chen <peter.chen@....com> --- drivers/net/ethernet/marvell/pxa168_eth.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ethernet/marvell/pxa168_eth.c b/drivers/net/ethernet/marvell/pxa168_eth.c index aeeb2e7..5d5000c 100644 --- a/drivers/net/ethernet/marvell/pxa168_eth.c +++ b/drivers/net/ethernet/marvell/pxa168_eth.c @@ -1506,6 +1506,7 @@ static int pxa168_eth_probe(struct platform_device *pdev) } of_property_read_u32(np, "reg", &pep->phy_addr); pep->phy_intf = of_get_phy_mode(pdev->dev.of_node); + of_node_put(np); } /* Hardware supports only 3 ports */ -- 1.9.1
Powered by blists - more mailing lists