Skip to content

Commit

Permalink
Don't always show debug messages
Browse files Browse the repository at this point in the history
CONFIG_EXFAT_DEBUG_MSG is always defined (either by Kconfig if on, or
exfat_config.h since 89d7aab) so currently debugging messages are
always on.
  • Loading branch information
ianw committed Oct 2, 2013
1 parent a61a1cb commit fc3bd56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exfat_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
#define UTBL_ROW_COUNT (1<<LOW_INDEX_BIT)
#define UTBL_COL_COUNT (1<<HIGH_INDEX_BIT)

#ifdef CONFIG_EXFAT_DEBUG_MSG
#if CONFIG_EXFAT_DEBUG_MSG
#define DPRINTK(...) \
do { \
printk("[EXFAT] " __VA_ARGS__); \
Expand Down

0 comments on commit fc3bd56

Please sign in to comment.