diff options
author | Stefan Roese <sr@denx.de> | 2008-03-11 15:11:18 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2008-03-15 07:28:04 +0100 |
commit | 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945 (patch) | |
tree | 780604b57dcacef2d3fc5b15efba3a71a50de1fd /include/common.h | |
parent | 999ecd5aca381984d8ebbeb207ece82a1c275577 (diff) | |
download | u-boot-imx-6f2eb3f3d8ea2dbb224d0da5a12038693bab9945.zip u-boot-imx-6f2eb3f3d8ea2dbb224d0da5a12038693bab9945.tar.gz u-boot-imx-6f2eb3f3d8ea2dbb224d0da5a12038693bab9945.tar.bz2 |
ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
This patch adds basic support for the AMCC 460EX/460GT PPC's.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index cd8aad0..673afdd 100644 --- a/include/common.h +++ b/include/common.h @@ -273,7 +273,9 @@ void pciinfo (int, int); void pci_master_init (struct pci_controller *); # endif int is_pci_host (struct pci_controller *); -#if defined(CONFIG_440SPE) || defined(CONFIG_405EX) +#if defined(CONFIG_440SPE) || \ + defined(CONFIG_460EX) || defined(CONFIG_460GT) || \ + defined(CONFIG_405EX) void pcie_setup_hoses(int busno); #endif #endif |