Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit de11743e authored by Adrian Bunk's avatar Adrian Bunk Committed by David S. Miller
Browse files

olympic_open() must be __devinit



This patch fixes the following section mismatch:

<--  snip  -->

...
WARNING: drivers/net/built-in.o(.text+0x155573): Section mismatch in reference from the function olympic_open() to the function .devinit.text:olympic_init()
...

<--  snip  -->

Signed-off-by: default avatarAdrian Bunk <bunk@kernel.org>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 976006f1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -434,7 +434,7 @@ static int __devinit olympic_init(struct net_device *dev)

}

static int olympic_open(struct net_device *dev) 
static int __devinit olympic_open(struct net_device *dev) 
{
	struct olympic_private *olympic_priv=netdev_priv(dev);
	u8 __iomem *olympic_mmio=olympic_priv->olympic_mmio,*init_srb;