diff options
author | Stefan Roese | 2009-11-12 17:19:37 +0100 |
---|---|---|
committer | Stefan Roese | 2009-11-19 11:35:34 +0100 |
commit | 6c70049bd14e8e81764570732be7f34a89831f09 (patch) | |
tree | 9e2028ab7a017c9a8f78ac62a99e135bb5b23630 /include | |
parent | a760b0203155da6fb8b8e9086169bb87d09d76fa (diff) |
ppc4xx: Consolidate pci_master_init() function
This patch removes the duplicted implementations of the pci_master_init()
function by introducing a weak default function for it. It can be
overridden by a board specific version.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/4xx_pci.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asm-ppc/4xx_pci.h b/include/asm-ppc/4xx_pci.h index 31769901ca8..f686e7cb07b 100644 --- a/include/asm-ppc/4xx_pci.h +++ b/include/asm-ppc/4xx_pci.h @@ -55,5 +55,6 @@ void board_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev); int pci_arbiter_enabled(void); int __pci_pre_init(struct pci_controller *hose); void __pci_target_init(struct pci_controller *hose); +void __pci_master_init(struct pci_controller *hose); #endif |