bnx2x: Move printing of version from probe to the init
authorEilon Greenstein <eilong@broadcom.com>
Wed, 12 Aug 2009 08:23:37 +0000 (08:23 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 13 Aug 2009 06:02:51 +0000 (23:02 -0700)
Move printing of version from probe to the init function
Rather then checking if this is the first module probe call to print
the version of the driver only once, the statement is moved to the init
function of the module where init is only called once

Signed-off-by: Benjamin Li <benli@broadcom.com>
Signed-off-by: Eilon Greenstein <eilong@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/bnx2x_main.c

index 807c1565ef806baa21524210ee8c91540596e19e..f1bd0a32cc30b4bcdb6900f8bb0b87386190843b 100644 (file)
@@ -11872,15 +11872,11 @@ request_firmware_exit:
 static int __devinit bnx2x_init_one(struct pci_dev *pdev,
                                    const struct pci_device_id *ent)
 {
-       static int version_printed;
        struct net_device *dev = NULL;
        struct bnx2x *bp;
        int pcie_width, pcie_speed;
        int rc;
 
-       if (version_printed++ == 0)
-               printk(KERN_INFO "%s", version);
-
        /* dev zeroed in init_etherdev */
        dev = alloc_etherdev_mq(sizeof(*bp), MAX_CONTEXT);
        if (!dev) {
@@ -12218,6 +12214,8 @@ static int __init bnx2x_init(void)
 {
        int ret;
 
+       printk(KERN_INFO "%s", version);
+
        bnx2x_wq = create_singlethread_workqueue("bnx2x");
        if (bnx2x_wq == NULL) {
                printk(KERN_ERR PFX "Cannot create workqueue\n");
This page took 0.037868 seconds and 5 git commands to generate.