summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xhfc/xhfc_leb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xhfc/xhfc_leb.h b/xhfc/xhfc_leb.h
index 39a7387..f23ac27 100644
--- a/xhfc/xhfc_leb.h
+++ b/xhfc/xhfc_leb.h
@@ -64,12 +64,12 @@ static inline void write_xhfc_soft_conf(struct xhfc *xhfc, u8 soft_conf)
#define read_xhfc(x, reg) ({ \
u8 _res = read_xhfc(x, reg); \
- if (DBG_REGS) printk(KERN_INFO #reg " -> %02x\n", _res);\
+ if (DBG_REGS) printk(KERN_DEBUG #reg " -> %02x\n", _res);\
_res; \
})
#define write_xhfc(x, reg, val) ({ \
- if (DBG_REGS) printk(KERN_INFO #reg " <- %02x\n", val); \
+ if (DBG_REGS) printk(KERN_DEBUG #reg " <- %02x\n", val); \
write_xhfc(x, reg, val); \
})