Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 353837
b: refs/heads/master
c: ee39b78
h: refs/heads/master
i:
  353835: a250a98
v: v3
  • Loading branch information
Kevin McKinney authored and Greg Kroah-Hartman committed Jan 7, 2013
1 parent f4ea745 commit 3c37e0d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a049728928b14cadc6ceb128cedde9f8e5af2b3c
refs/heads/master: ee39b7879ee89dfbb605681277efdd254e621a71
6 changes: 3 additions & 3 deletions trunk/drivers/staging/bcm/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ struct bcm_debug_state {
(Type & Adapter->stDebugState.type) && \
(SubType & Adapter->stDebugState.subtype[Type])) { \
if (dbg_level & DBG_NO_FUNC_PRINT) \
printk(KERN_DEBUG string, ##args); \
pr_debug("%s:\n", string); \
else \
printk(KERN_DEBUG "%s:" string, __func__, ##args); \
pr_debug("%s:\n" string, __func__, ##args); \
} \
} while (0)

Expand All @@ -220,7 +220,7 @@ struct bcm_debug_state {
(dbg_level & DBG_LVL_BITMASK) <= Adapter->stDebugState.debug_level && \
(Type & Adapter->stDebugState.type) && \
(SubType & Adapter->stDebugState.subtype[Type]))) { \
printk(KERN_DEBUG "%s:\n", __func__); \
pr_debug("%s:\n", __func__); \
print_hex_dump(KERN_DEBUG, " ", DUMP_PREFIX_OFFSET, \
16, 1, buffer, bufferlen, false); \
} \
Expand Down

0 comments on commit 3c37e0d

Please sign in to comment.