diff options
author | Stefan Roese <sr@denx.de> | 2007-06-25 15:57:39 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-06-25 15:57:39 +0200 |
commit | 466fff1a7bb5fe764a06450626f6098219f446b8 (patch) | |
tree | ea3d101e2103afb8d6f16c78a8809cef1c095a46 /board/lwmon5/lwmon5.c | |
parent | 6f35c53166213c24a5a0e2390ed861136ff73870 (diff) | |
download | u-boot-imx-466fff1a7bb5fe764a06450626f6098219f446b8.zip u-boot-imx-466fff1a7bb5fe764a06450626f6098219f446b8.tar.gz u-boot-imx-466fff1a7bb5fe764a06450626f6098219f446b8.tar.bz2 |
ppc4xx: Add pci_pre_init() for 405 boards
This patch removes the CFG_PCI_PRE_INIT option completely, since
it's not needed anymore with the patch from Matthias Fuchs with
the "weak" pci_pre_init() implementation.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/lwmon5/lwmon5.c')
-rw-r--r-- | board/lwmon5/lwmon5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/lwmon5/lwmon5.c b/board/lwmon5/lwmon5.c index b303ec7..d5b8f8c 100644 --- a/board/lwmon5/lwmon5.c +++ b/board/lwmon5/lwmon5.c @@ -304,7 +304,7 @@ int testdram(void) * certain pre-initialization actions. * ************************************************************************/ -#if defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT) +#if defined(CONFIG_PCI) int pci_pre_init(struct pci_controller *hose) { unsigned long addr; @@ -345,7 +345,7 @@ int pci_pre_init(struct pci_controller *hose) return 1; } -#endif /* defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT) */ +#endif /* defined(CONFIG_PCI) */ /************************************************************************* * pci_target_init |