drivers/net/ethernet/nxp/lpc_eth.c: Call mdiobus_unregister before mdiobus_free
authorPeter Senna Tschudin <[email protected]>
Sun, 28 Oct 2012 06:12:00 +0000 (06:12 +0000)
committerDavid S. Miller <[email protected]>
Sat, 3 Nov 2012 01:36:06 +0000 (21:36 -0400)
commit57c10b61c84bfed68b1b317d6f507a392724b9c4
treed1939fd29a602436db2df0a89aaae5d2ea304d49
parent2b674047bef23d49a7ca8ec32f4b9e4e12588621
drivers/net/ethernet/nxp/lpc_eth.c: Call mdiobus_unregister before mdiobus_free

Based on commit b27393aecf66199f5ddad37c302d3e0cfadbe6c0

Calling mdiobus_free without calling mdiobus_unregister causes
BUG_ON(). This patch fixes the issue.

The semantic patch that found this issue(http://coccinelle.lip6.fr/):
// <smpl>
@@
expression E;
@@
  ... when != mdiobus_unregister(E);

+ mdiobus_unregister(E);
  mdiobus_free(E);
// </smpl>

Signed-off-by: Peter Senna Tschudin <[email protected]>
Tested-by: Roland Stigge <[email protected]>
Tested-by: Alexandre Pereira da Silva <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/nxp/lpc_eth.c