diff options
author | Bin Meng | 2015-05-16 09:33:14 +0800 |
---|---|---|
committer | Simon Glass | 2015-06-04 02:39:39 -0600 |
commit | 1b73b1c7fbb6c35c509e5b1d43785f029146cf61 (patch) | |
tree | 87c52ea993548698b536bd0eed7a42f4b68404c7 /drivers | |
parent | 9c4f541237d43439df4cc3021544741f318d378d (diff) |
pci: Allow debug message output in pci_auto.c
Remove the '#undef DEBUG' in pci_auto.c so that we can enable debug
message output via '-DDEBUG'.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/pci_auto.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/pci_auto.c b/drivers/pci/pci_auto.c index e8da9776731..43965d8a2ac 100644 --- a/drivers/pci/pci_auto.c +++ b/drivers/pci/pci_auto.c @@ -14,7 +14,6 @@ #include <errno.h> #include <pci.h> -#undef DEBUG #ifdef DEBUG #define DEBUGF(x...) printf(x) #else |