diff options
author | Macpaul Lin <macpaul@andestech.com> | 2011-11-25 17:14:51 +0800 |
---|---|---|
committer | Macpaul Lin <macpaul@gmail.com> | 2012-02-28 13:21:40 +0800 |
commit | 4ef806794a165252d69c519d868a746e4cfa9729 (patch) | |
tree | a493f8b20a21fa30df9189105479135f79b0560b | |
parent | 3998586bce1efbd2534d78be2c6af341c5659f12 (diff) | |
download | u-boot-imx-4ef806794a165252d69c519d868a746e4cfa9729.zip u-boot-imx-4ef806794a165252d69c519d868a746e4cfa9729.tar.gz u-boot-imx-4ef806794a165252d69c519d868a746e4cfa9729.tar.bz2 |
nds32/board.c: add PCI prompt at boot up
add PCI prompt at boot up for probing PCI device
Signed-off-by: Macpaul Lin <macpaul@andestech.com>
-rw-r--r-- | arch/nds32/lib/board.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/nds32/lib/board.c b/arch/nds32/lib/board.c index 66e4537..074aabf 100644 --- a/arch/nds32/lib/board.c +++ b/arch/nds32/lib/board.c @@ -365,6 +365,7 @@ void board_init_r(gd_t *id, ulong dest_addr) env_relocate(); #if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI) + puts("PCI: "); nds32_pci_init(); #endif |