summaryrefslogtreecommitdiffstats
path: root/package/madwifi
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-07-18 22:51:04 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-07-18 22:51:04 +0000
commit8aa31d7ce01f62e092d91499529e80db27775558 (patch)
tree4a3ec2ec4adeab98399fc9f479b82d84e3372b6e /package/madwifi
parent16731f482f4d3f3e94c90beb70c9cbba9c8dd631 (diff)
downloadmaster-31e0f0ae-8aa31d7ce01f62e092d91499529e80db27775558.tar.gz
master-31e0f0ae-8aa31d7ce01f62e092d91499529e80db27775558.tar.bz2
master-31e0f0ae-8aa31d7ce01f62e092d91499529e80db27775558.zip
fix hal module load msg
SVN-Revision: 11867
Diffstat (limited to 'package/madwifi')
-rw-r--r--package/madwifi/patches-r3776/333-hal_init_msg.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/package/madwifi/patches-r3776/333-hal_init_msg.patch b/package/madwifi/patches-r3776/333-hal_init_msg.patch
new file mode 100644
index 0000000000..1369dcfc19
--- /dev/null
+++ b/package/madwifi/patches-r3776/333-hal_init_msg.patch
@@ -0,0 +1,30 @@
+--- a/ath_hal/ah_os.c
++++ b/ath_hal/ah_os.c
+@@ -1136,9 +1136,6 @@
+ * Module glue.
+ */
+ #include "version.h"
+-#if 0
+-static char *dev_info = "ath_hal";
+-#endif
+
+ MODULE_AUTHOR("Errno Consulting, Sam Leffler");
+ MODULE_DESCRIPTION("Atheros Hardware Access Layer (HAL)");
+@@ -1172,7 +1169,7 @@
+ static int __init
+ init_ath_hal(void)
+ {
+- const char *sep;
++ const char *sep = "";
+ int i;
+ #ifdef MMIOTRACE
+ kmmio_logmsg = _kmmio_logmsg;
+@@ -1181,7 +1178,7 @@
+ ifxmips_emulate = ifxmips_has_brn_block();
+ #endif
+
+- sep = "";
++ printk(KERN_INFO "hal: %s (", ath_hal_version);
+ for (i = 0; ath_hal_buildopts[i] != NULL; i++) {
+ printk("%s%s", sep, ath_hal_buildopts[i]);
+ sep = ", ";