summaryrefslogtreecommitdiff
path: root/xhfc
diff options
context:
space:
mode:
authorGuillaume Knispel <gknispel@proformatique.com>2012-02-15 19:12:38 +0100
committerGuillaume Knispel <gknispel@proformatique.com>2012-02-15 19:12:38 +0100
commite0caaf5d19a597014b1dd8318ac8cd5f6e542b23 (patch)
tree3a7ab1bad7f2e5d80102c06e33c8534c4c5085bf /xhfc
parent774aa87d4c3682d9bb64ca2951a12c716796ce98 (diff)
don't trace as KERN_INFO
Diffstat (limited to 'xhfc')
-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); \
})