Re: [PATCH] net: eth: altera: do not free array priv->mdio->irq

2016-03-06 Thread David Miller
From: Colin King Date: Thu, 3 Mar 2016 13:47:18 + > From: Colin Ian King > > priv->mdio->irq used to be allocated and required freeing, but it > is now a fixed sized array and should no longer be free'd. > > Issue detected using static analysis with CoverityScan > > Fixes: e7f4dc3536a400

Re: [PATCH] net: eth: altera: do not free array priv->mdio->irq

2016-03-03 Thread Andrew Lunn
On Thu, Mar 03, 2016 at 01:47:18PM +, Colin King wrote: > From: Colin Ian King > > priv->mdio->irq used to be allocated and required freeing, but it > is now a fixed sized array and should no longer be free'd. > > Issue detected using static analysis with CoverityScan > > Fixes: e7f4dc3536a

[PATCH] net: eth: altera: do not free array priv->mdio->irq

2016-03-03 Thread Colin King
From: Colin Ian King priv->mdio->irq used to be allocated and required freeing, but it is now a fixed sized array and should no longer be free'd. Issue detected using static analysis with CoverityScan Fixes: e7f4dc3536a400 ("mdio: Move allocation of interrupts into core") Signed-off-by: Colin I