mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
net: fix section mismatch in fec.c
fec_enet_init is called by both fec_probe and fec_resume, so it shouldn't be marked as __init. Signed-off-by: Steven King <sfking@fdwdc.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
abf90cca97
commit
78abcb13dd
1 changed files with 1 additions and 1 deletions
|
@ -1654,7 +1654,7 @@ static const struct net_device_ops fec_netdev_ops = {
|
||||||
*
|
*
|
||||||
* index is only used in legacy code
|
* index is only used in legacy code
|
||||||
*/
|
*/
|
||||||
int __init fec_enet_init(struct net_device *dev, int index)
|
static int fec_enet_init(struct net_device *dev, int index)
|
||||||
{
|
{
|
||||||
struct fec_enet_private *fep = netdev_priv(dev);
|
struct fec_enet_private *fep = netdev_priv(dev);
|
||||||
struct bufdesc *cbd_base;
|
struct bufdesc *cbd_base;
|
||||||
|
|
Loading…
Reference in a new issue