From e0caaf5d19a597014b1dd8318ac8cd5f6e542b23 Mon Sep 17 00:00:00 2001 From: Guillaume Knispel Date: Wed, 15 Feb 2012 19:12:38 +0100 Subject: don't trace as KERN_INFO --- xhfc/xhfc_leb.h | 4 ++-- 1 file 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); \ }) -- cgit v1.2.3