diff options
| author | Stefan Roese <sr@denx.de> | 2007-10-05 17:10:59 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-10-31 21:20:49 +0100 | 
| commit | dbbd125721aea6645fdb962f36bd41f59e272f9d (patch) | |
| tree | 726c0998b77e26179294b8686cd005e70eb218ce /include/common.h | |
| parent | 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31 (diff) | |
| download | olio-uboot-2014.01-dbbd125721aea6645fdb962f36bd41f59e272f9d.tar.xz olio-uboot-2014.01-dbbd125721aea6645fdb962f36bd41f59e272f9d.zip | |
ppc4xx: Add PPC405EX support
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/common.h')
| -rw-r--r-- | include/common.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/include/common.h b/include/common.h index aca281bda..98655914f 100644 --- a/include/common.h +++ b/include/common.h @@ -266,7 +266,7 @@ void	pciinfo	      (int, int);      int	   pci_pre_init	       (struct pci_controller * );  #endif -#if defined(CONFIG_PCI) && defined(CONFIG_440) +#if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))  #   if defined(CFG_PCI_TARGET_INIT)  	void	pci_target_init	     (struct pci_controller *);  #   endif @@ -274,7 +274,7 @@ void	pciinfo	      (int, int);  	void	pci_master_init	     (struct pci_controller *);  #   endif      int	    is_pci_host		(struct pci_controller *); -#if defined(CONFIG_440SPE) +#if defined(CONFIG_440SPE) || defined(CONFIG_405EX)     void pcie_setup_hoses(int busno);  #endif  #endif |