diff options
author | Stefan Roese <sr@denx.de> | 2007-10-05 14:23:43 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-10-31 21:20:49 +0100 |
commit | 19e93b1e16d267220440d827b920fbad8abfa70f (patch) | |
tree | 1bc1b9c1ccc3aa77199732bf7ed0e108205e6c53 /cpu/ppc4xx/4xx_pcie.c | |
parent | ff68f66bcb0da847845aa2fac11eba6c25938c99 (diff) | |
download | u-boot-imx-19e93b1e16d267220440d827b920fbad8abfa70f.zip u-boot-imx-19e93b1e16d267220440d827b920fbad8abfa70f.tar.gz u-boot-imx-19e93b1e16d267220440d827b920fbad8abfa70f.tar.bz2 |
ppc4xx: 4xx_pcie: Change PCIe status output to match common style
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/4xx_pcie.c')
-rw-r--r-- | cpu/ppc4xx/4xx_pcie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/ppc4xx/4xx_pcie.c b/cpu/ppc4xx/4xx_pcie.c index 167aba6..7ee0e5b 100644 --- a/cpu/ppc4xx/4xx_pcie.c +++ b/cpu/ppc4xx/4xx_pcie.c @@ -812,7 +812,7 @@ void ppc4xx_setup_pcie_rootpoint(struct pci_controller *hose, int port) /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */ out_le32(mbase + 0x208, 0x06040001); - printf("PCIE:%d successfully set as rootpoint\n", port); + printf("PCIE%d: successfully set as root-complex\n", port); } int ppc4xx_setup_pcie_endpoint(struct pci_controller *hose, int port) @@ -908,7 +908,7 @@ int ppc4xx_setup_pcie_endpoint(struct pci_controller *hose, int port) mdelay(1000); } - printf("PCIE:%d successfully set as endpoint\n", port); + printf("PCIE%d: successfully set as endpoint\n", port); return 0; } |