smc91x: add __init markings to smc_drv_probe()
authorMike Frysinger <vapier@gentoo.org>
Fri, 31 Oct 2008 22:11:06 +0000 (22:11 +0000)
committerJeff Garzik <jgarzik@redhat.com>
Sun, 2 Nov 2008 13:34:38 +0000 (08:34 -0500)
The smc_drv_probe() is the platform_driver probe function and it is only
called during init.  Further, it calls smc_probe() which is marked as __init
already.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/net/smc91x.c

index 2d8bfa7..b5ff632 100644 (file)
@@ -2123,7 +2123,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 __init smc_drv_probe(struct platform_device *pdev)
 {
        struct smc91x_platdata *pd = pdev->dev.platform_data;
        struct smc_local *lp;