blob: 1369dcfc1948c15a557868f2cb26f0ea1513f746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 = ", ";
|