On Sun, Feb 24, 2008 at 07:34:11PM -0800, David Brownell wrote: > Section fixup: > > WARNING: drivers/net/built-in.o(.text+0x1a2c): Section mismatch > in reference from the function smc_drv_probe() > to the function .init.text:smc_probe() > The function smc_drv_probe() references > the function __init smc_probe(). > This is often because smc_drv_probe lacks a __init > annotation or the annotation of smc_probe is wrong. > > Signed-off-by: David Brownell <[EMAIL PROTECTED]> > --- > drivers/net/smc91x.c | 2 +- > 1 files changed, 1 insertion(+), 1 deletion(-) > > --- a/drivers/net/smc91x.c 2008-02-24 18:50:32.000000000 -0800 > +++ b/drivers/net/smc91x.c 2008-02-24 19:16:29.000000000 -0800 > @@ -2121,7 +2121,7 @@ static void smc_release_datacs(struct pl > * 0 --> there is a device > * anything else, error > */ > -static int smc_drv_probe(struct platform_device *pdev) > +static int __init smc_drv_probe(struct platform_device *pdev) > { > struct net_device *ndev; > struct resource *res, *ires;
>From a quick look this is wrong. smc_drv_probe is assined the .probe member so it is used during hotplug and thus should be __devinit. Likewise smc_probe is used by smc_drv_probe and thus smc_probe should be __devinit too. So something like the appended. On my way out of the door so not even build tested! Sam diff --git a/drivers/net/smc91x.c b/drivers/net/smc91x.c index 4020e9e..640bca5 100644 --- a/drivers/net/smc91x.c +++ b/drivers/net/smc91x.c @@ -1775,7 +1775,7 @@ static int __init smc_findirq(void __iomem *ioaddr) * o actually GRAB the irq. * o GRAB the region */ -static int __init smc_probe(struct net_device *dev, void __iomem *ioaddr, +static int __devinit smc_probe(struct net_device *dev, void __iomem *ioaddr, unsigned long irq_flags) { struct smc_local *lp = netdev_priv(dev); @@ -2121,7 +2121,7 @@ static void smc_release_datacs(struct platform_device *pdev, struct net_device * * 0 --> there is a device * anything else, error */ -static int smc_drv_probe(struct platform_device *pdev) +static int __devinit smc_drv_probe(struct platform_device *pdev) { struct net_device *ndev; struct resource *res, *ires; -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html