summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath9k/main.c
diff options
context:
space:
mode:
authorLuis R. Rodriguez <lrodriguez@atheros.com>2009-01-26 15:30:03 (GMT)
committerJohn W. Linville <linville@tuxdriver.com>2009-01-29 21:01:49 (GMT)
commitb51bb3cd6c8078b8b8cc1d1725b100267eaa726e (patch)
tree600cf062dc5420a1b68511439a066c30859b6f86 /drivers/net/wireless/ath9k/main.c
parent793c592995b841667fa6d1a36a98880430dcc8f4 (diff)
downloadlinux-fsl-qoriq-b51bb3cd6c8078b8b8cc1d1725b100267eaa726e.tar.xz
ath9k: remove useless ath9k driver version information
Versioning for ath9k is pointless we have kept it at 0.1 since the initial release so its meaningless. We put more emphasis on kernel release or dated wireless-testing master tag as per John's tagging. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/main.c')
-rw-r--r--drivers/net/wireless/ath9k/main.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/net/wireless/ath9k/main.c b/drivers/net/wireless/ath9k/main.c
index 90e687b..ede8980 100644
--- a/drivers/net/wireless/ath9k/main.c
+++ b/drivers/net/wireless/ath9k/main.c
@@ -2588,13 +2588,12 @@ static int __init ath9k_init(void)
{
int error;
- printk(KERN_INFO "%s: %s\n", dev_info, ATH_PCI_VERSION);
-
/* Register rate control algorithm */
error = ath_rate_control_register();
if (error != 0) {
printk(KERN_ERR
- "Unable to register rate control algorithm: %d\n",
+ "ath9k: Unable to register rate control "
+ "algorithm: %d\n",
error);
goto err_out;
}
@@ -2602,7 +2601,7 @@ static int __init ath9k_init(void)
error = ath_pci_init();
if (error < 0) {
printk(KERN_ERR
- "ath_pci: No devices found, driver not installed.\n");
+ "ath9k: No PCI devices found, driver not installed.\n");
error = -ENODEV;
goto err_rate_unregister;
}