projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7490889
)
orinoco: use KERN_DEBUG for link status messages
author
Pavel Roskin
<proski@gnu.org>
Mon, 19 Jan 2009 04:20:58 +0000
(23:20 -0500)
committer
John W. Linville
<linville@tuxdriver.com>
Thu, 22 Jan 2009 18:55:01 +0000
(13:55 -0500)
KERN_INFO is too "loud" for messages that are generated by the ordinary
events, such as accociation. Use of KERN_DEBUG is consistent with
mac80211.
Suggested by Michael Gilbert <michael.s.gilbert@gmail.com>
Signed-off-by: Pavel Roskin <proski@gnu.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/orinoco/orinoco.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/orinoco/orinoco.c
b/drivers/net/wireless/orinoco/orinoco.c
index 39eab39b065f3fb04e09abf298e88922dc5797a0..45a04faa7818e7ead799eeee65030bd08ede0592 100644
(file)
--- a/
drivers/net/wireless/orinoco/orinoco.c
+++ b/
drivers/net/wireless/orinoco/orinoco.c
@@
-1673,7
+1673,7
@@
static void print_linkstatus(struct net_device *dev, u16 status)
s = "UNKNOWN";
}
- printk(KERN_
INFO
"%s: New link status: %s (%04x)\n",
+ printk(KERN_
DEBUG
"%s: New link status: %s (%04x)\n",
dev->name, s, status);
}