netdev: octeon_mgmt: Fix section mismatch errors.

We started getting:

WARNING: drivers/net/built-in.o(.data+0x10f0): Section mismatch in
reference from the variable octeon_mgmt_driver to the function
.init.text:octeon_mgmt_probe()

This fixes it.

Signed-off-by: David Daney <ddaney@caviumnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David Daney
2010-06-24 09:14:47 +00:00
committed by David S. Miller
parent 210d6de78c
commit d30b181bd6

View File

@@ -1067,7 +1067,7 @@ static const struct net_device_ops octeon_mgmt_ops = {
#endif #endif
}; };
static int __init octeon_mgmt_probe(struct platform_device *pdev) static int __devinit octeon_mgmt_probe(struct platform_device *pdev)
{ {
struct resource *res_irq; struct resource *res_irq;
struct net_device *netdev; struct net_device *netdev;
@@ -1124,7 +1124,7 @@ err:
return -ENOENT; return -ENOENT;
} }
static int __exit octeon_mgmt_remove(struct platform_device *pdev) static int __devexit octeon_mgmt_remove(struct platform_device *pdev)
{ {
struct net_device *netdev = dev_get_drvdata(&pdev->dev); struct net_device *netdev = dev_get_drvdata(&pdev->dev);
@@ -1139,7 +1139,7 @@ static struct platform_driver octeon_mgmt_driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
}, },
.probe = octeon_mgmt_probe, .probe = octeon_mgmt_probe,
.remove = __exit_p(octeon_mgmt_remove), .remove = __devexit_p(octeon_mgmt_remove),
}; };
extern void octeon_mdiobus_force_mod_depencency(void); extern void octeon_mdiobus_force_mod_depencency(void);