diff options
author | Krzysztof Hałasa <khc@pm.waw.pl> | 2008-07-09 15:30:17 -0400 |
---|---|---|
committer | Krzysztof Hałasa <khc@pm.waw.pl> | 2008-11-21 20:49:48 -0500 |
commit | 967834361a4beb3bbd3069189c192dc6fdeef8a9 (patch) | |
tree | 5ab9b849a283891f16208426aa7c3c7f3be6e526 /drivers/net/wan/pc300too.c | |
parent | 0954ed826921bcf11352e05a58d598c493e6bdfb (diff) |
WAN: don't print HD64572 driver versions anymore.
Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl>
Diffstat (limited to 'drivers/net/wan/pc300too.c')
-rw-r--r-- | drivers/net/wan/pc300too.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/drivers/net/wan/pc300too.c b/drivers/net/wan/pc300too.c index 289c5fe65194..9b42199d4f83 100644 --- a/drivers/net/wan/pc300too.c +++ b/drivers/net/wan/pc300too.c | |||
@@ -37,9 +37,6 @@ | |||
37 | 37 | ||
38 | #include "hd64572.h" | 38 | #include "hd64572.h" |
39 | 39 | ||
40 | static const char* version = "Cyclades PC300 driver version: 1.17"; | ||
41 | static const char* devname = "PC300"; | ||
42 | |||
43 | #undef DEBUG_PKT | 40 | #undef DEBUG_PKT |
44 | #define DEBUG_RINGS | 41 | #define DEBUG_RINGS |
45 | 42 | ||
@@ -316,12 +313,6 @@ static int __devinit pc300_pci_init_one(struct pci_dev *pdev, | |||
316 | u32 scaphys; /* SCA memory base */ | 313 | u32 scaphys; /* SCA memory base */ |
317 | u32 plxphys; /* PLX registers memory base */ | 314 | u32 plxphys; /* PLX registers memory base */ |
318 | 315 | ||
319 | #ifndef MODULE | ||
320 | static int printed_version; | ||
321 | if (!printed_version++) | ||
322 | printk(KERN_INFO "%s\n", version); | ||
323 | #endif | ||
324 | |||
325 | i = pci_enable_device(pdev); | 316 | i = pci_enable_device(pdev); |
326 | if (i) | 317 | if (i) |
327 | return i; | 318 | return i; |
@@ -444,7 +435,7 @@ static int __devinit pc300_pci_init_one(struct pci_dev *pdev, | |||
444 | writew(0x0041, &card->plxbase->intr_ctrl_stat); | 435 | writew(0x0041, &card->plxbase->intr_ctrl_stat); |
445 | 436 | ||
446 | /* Allocate IRQ */ | 437 | /* Allocate IRQ */ |
447 | if (request_irq(pdev->irq, sca_intr, IRQF_SHARED, devname, card)) { | 438 | if (request_irq(pdev->irq, sca_intr, IRQF_SHARED, "pc300", card)) { |
448 | printk(KERN_WARNING "pc300: could not allocate IRQ%d.\n", | 439 | printk(KERN_WARNING "pc300: could not allocate IRQ%d.\n", |
449 | pdev->irq); | 440 | pdev->irq); |
450 | pc300_pci_remove_one(pdev); | 441 | pc300_pci_remove_one(pdev); |
@@ -522,9 +513,6 @@ static struct pci_driver pc300_pci_driver = { | |||
522 | 513 | ||
523 | static int __init pc300_init_module(void) | 514 | static int __init pc300_init_module(void) |
524 | { | 515 | { |
525 | #ifdef MODULE | ||
526 | printk(KERN_INFO "%s\n", version); | ||
527 | #endif | ||
528 | if (pci_clock_freq < 1000000 || pci_clock_freq > 80000000) { | 516 | if (pci_clock_freq < 1000000 || pci_clock_freq > 80000000) { |
529 | printk(KERN_ERR "pc300: Invalid PCI clock frequency\n"); | 517 | printk(KERN_ERR "pc300: Invalid PCI clock frequency\n"); |
530 | return -EINVAL; | 518 | return -EINVAL; |