[PATCH] adm8211: kill version printks
authorMichael Wu <flamingice@sourmilk.net>
Mon, 24 Sep 2007 22:10:25 +0000 (18:10 -0400)
committerDavid S. Miller <davem@sunset.davemloft.net>
Wed, 10 Oct 2007 23:53:09 +0000 (16:53 -0700)
No need to pollute dmesg with copyright info.

Signed-off-by: Michael Wu <flamingice@sourmilk.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/adm8211.c

index 4c43cdb..ce1f8e3 100644 (file)
@@ -39,11 +39,6 @@ static unsigned int rx_ring_size __read_mostly = 16;
 module_param(tx_ring_size, uint, 0);
 module_param(rx_ring_size, uint, 0);
 
-static const char version[] = KERN_INFO "adm8211: "
-"Copyright 2003, Jouni Malinen <j@w1.fi>; "
-"Copyright 2004-2007, Michael Wu <flamingice@sourmilk.net>\n";
-
-
 static struct pci_device_id adm8211_pci_id_table[] __devinitdata = {
        /* ADMtek ADM8211 */
        { PCI_DEVICE(0x10B7, 0x6000) }, /* 3Com 3CRSHPW796 */
@@ -1794,12 +1789,6 @@ static int __devinit adm8211_probe(struct pci_dev *pdev,
        u8 perm_addr[ETH_ALEN];
        DECLARE_MAC_BUF(mac);
 
-#ifndef MODULE
-       static unsigned int cardidx;
-       if (!cardidx++)
-               printk(version);
-#endif
-
        err = pci_enable_device(pdev);
        if (err) {
                printk(KERN_ERR "%s (adm8211): Cannot enable new PCI device\n",
@@ -2051,10 +2040,6 @@ static struct pci_driver adm8211_driver = {
 
 static int __init adm8211_init(void)
 {
-#ifdef MODULE
-       printk(version);
-#endif
-
        return pci_register_driver(&adm8211_driver);
 }