Commit 1b73b1c7fbb6c35c509e5b1d43785f029146cf61

Authored by Bin Meng
Committed by Simon Glass
1 parent 9c4f541237

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>

Showing 1 changed file with 0 additions and 1 deletions Side-by-side Diff

drivers/pci/pci_auto.c
... ... @@ -14,7 +14,6 @@
14 14 #include <errno.h>
15 15 #include <pci.h>
16 16  
17   -#undef DEBUG
18 17 #ifdef DEBUG
19 18 #define DEBUGF(x...) printf(x)
20 19 #else