diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2009-08-03 20:44:55 -0500 | 
|---|---|---|
| committer | Kumar Gala <galak@kernel.crashing.org> | 2009-08-28 17:12:35 -0500 | 
| commit | fb3143b35eb5890ec72e79d17a6068a84a057d47 (patch) | |
| tree | adaf982477bdeb1654c50f9c3020e4d35db81074 /include/asm-ppc/fsl_pci.h | |
| parent | 5928da0193d31f52f4a5b9f6ed3d3f0390ffd2c1 (diff) | |
| download | olio-uboot-2014.01-fb3143b35eb5890ec72e79d17a6068a84a057d47.tar.xz olio-uboot-2014.01-fb3143b35eb5890ec72e79d17a6068a84a057d47.zip | |
pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init
Every platform that calls fsl_pci_init calls pci_setup_indirect before
it calls fsl_pci_init.  There isn't any reason to just call it from
fsl_pci_init and simplify things a bit.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/asm-ppc/fsl_pci.h')
| -rw-r--r-- | include/asm-ppc/fsl_pci.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/include/asm-ppc/fsl_pci.h b/include/asm-ppc/fsl_pci.h index 624ca5685..0473b720c 100644 --- a/include/asm-ppc/fsl_pci.h +++ b/include/asm-ppc/fsl_pci.h @@ -21,7 +21,7 @@  #define __FSL_PCI_H_  int fsl_pci_setup_inbound_windows(struct pci_region *r); -void fsl_pci_init(struct pci_controller *hose); +void fsl_pci_init(struct pci_controller *hose, u32 cfg_addr, u32 cfg_data);  void fsl_pci_config_unlock(struct pci_controller *hose);  void ft_fsl_pci_setup(void *blob, const char *pci_alias,  			struct pci_controller *hose); |