libertas: hexdump should use KERN_DEBUG

Marcelo Tosatti mtosatti at redhat.unroutablecom
Tue Jan 2 10:59:19 EST 2007


Commit:     8c49d8bad34c1b0f0be08f813bfe75daecaedcfc
Parent:     b0aecad50fa99d3a35740eca6456704191df4841
commit 8c49d8bad34c1b0f0be08f813bfe75daecaedcfc
Author:     Marcelo Tosatti <mtosatti at redhat.com>
AuthorDate: Sat Dec 23 22:32:32 2006 -0200
Commit:     Andres Salomon <dilinger at debian.org>
CommitDate: Tue Jan 2 10:31:44 2007 -0500

    libertas: hexdump should use KERN_DEBUG
    
    Subject says it all.
    
    Signed-off-by: Marcelo Tosatti <mtosatti at redhat.com>
    (cherry picked from 7b0a62a6d3010db9e7a8510597086c7d232f4319 commit)
---
 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