summaryrefslogtreecommitdiff
path: root/xhfc/xhfc_leb.h
diff options
context:
space:
mode:
Diffstat (limited to 'xhfc/xhfc_leb.h')
-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 08bd0ed..0c1bfb8 100644
--- a/xhfc/xhfc_leb.h
+++ b/xhfc/xhfc_leb.h
@@ -55,12 +55,12 @@ static inline void write_xhfc(struct xhfc * xhfc, u8 reg_addr, u8 value)
#ifdef DEBUG
#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_INFO #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_INFO #reg " <- %02x\n", val); \
write_xhfc(x, reg, val); \
})
#endif