mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-29 23:36:45 +07:00
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: Adrian Bunk <bunk@kernel.org> Signed-off-by: Jeff Garzik <jeff@garzik.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
976006f10b
commit
de11743e23
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user