orinoco: use KERN_DEBUG for link status messages

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>
This commit is contained in:
Pavel Roskin 2009-01-18 23:20:58 -05:00 committed by John W. Linville
parent 7490889c10
commit 11eaea4167
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}