diff options
author | Andre Przywara <andre.przywara@arm.com> | 2015-11-13 11:25:46 (GMT) |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-11-22 02:50:27 (GMT) |
commit | 0ee1a22b6dbf30158718ab59f294bf1103f63121 (patch) | |
tree | 5f09a45cd990747bcee93397f8f065f5a6877a07 /board/armltd | |
parent | d4e69e617cee68276f346207bb2396f6a39e9558 (diff) | |
download | u-boot-0ee1a22b6dbf30158718ab59f294bf1103f63121.tar.xz |
Juno: don't print PCI debug information by default
On a Juno r1 the PCI controller init routine outputs the rather boring
ATR entry information.
Do this only with DEBUG defined to avoid cluttering the user's
terminal.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Acked-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'board/armltd')
-rw-r--r-- | board/armltd/vexpress64/pcie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/armltd/vexpress64/pcie.c b/board/armltd/vexpress64/pcie.c index 7b999e8..eb23dd5 100644 --- a/board/armltd/vexpress64/pcie.c +++ b/board/armltd/vexpress64/pcie.c @@ -87,7 +87,7 @@ void xr3pci_set_atr_entry(unsigned long base, unsigned long src_addr, writel((u32)(trsl_addr >> 32), base + XR3PCI_ATR_TRSL_ADDR_HIGH); writel(trsl_param, base + XR3PCI_ATR_TRSL_PARAM); - printf("ATR entry: 0x%010lx %s 0x%010lx [0x%010llx] (param: 0x%06x)\n", + debug("ATR entry: 0x%010lx %s 0x%010lx [0x%010llx] (param: 0x%06x)\n", src_addr, (trsl_param & 0x400000) ? "<-" : "->", trsl_addr, ((u64)1) << window_size, trsl_param); } |