libertas: hexdump should use KERN_DEBUG

Marcelo Tosatti mtosatti at redhat.unroutablecom
Sun Dec 24 04:30:50 EST 2006


Commit:     7b0a62a6d3010db9e7a8510597086c7d232f4319
Parent:     ba1090a33c573c003eb1127c7db16dc71e720306
commit 7b0a62a6d3010db9e7a8510597086c7d232f4319
Author:     Marcelo Tosatti <mtosatti at redhat.com>
AuthorDate: Sat Dec 23 22:32:32 2006 -0200
Commit:     Marcelo Tosatti <mtosatti at redhat.com>
CommitDate: Sat Dec 23 22:32:32 2006 -0200

    libertas: hexdump should use KERN_DEBUG
    
    Subject says it all.
    
    Signed-off-by: Marcelo Tosatti <mtosatti at redhat.com>
---
 drivers/net/wireless/libertas/wlan_defs.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/libertas/wlan_defs.h b/drivers/net/wireless/libertas/wlan_defs.h
index b3551db..1d15678 100644
--- a/drivers/net/wireless/libertas/wlan_defs.h
+++ b/drivers/net/wireless/libertas/wlan_defs.h
@@ -125,7 +125,7 @@ static inline void HEXDUMP(char *prompt,
 
 	printk(KERN_DEBUG "%s: ", prompt);
 	for (i = 1; i <= len; i++) {
-		printk("%02x ", (u8) * buf);
+		printk(KERN_DEBUG "%02x ", (u8) * buf);
 		buf++;
 	}
 	printk("\n");


More information about the Commits-kernel mailing list