diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2012-01-21 13:13:19 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-02-27 21:19:24 +0100 |
commit | 4ae6a91a86279c78c773f570057919dffecee484 (patch) | |
tree | fda70058dec80a27cab2b2327ca00cb19506e2d8 | |
parent | 48a4ee50e4d02a54eb64fb3292c0b274e79e8519 (diff) | |
download | u-boot-imx-4ae6a91a86279c78c773f570057919dffecee484.zip u-boot-imx-4ae6a91a86279c78c773f570057919dffecee484.tar.gz u-boot-imx-4ae6a91a86279c78c773f570057919dffecee484.tar.bz2 |
integrator: stop calling pci_init() twice
The U-Boot startup infrastructure already makes sure pci_init() is
called at a proper time, calling it again from within the board
setup code will not make things better.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | board/armltd/integrator/integrator.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/board/armltd/integrator/integrator.c b/board/armltd/integrator/integrator.c index a507c09..4658ac1 100644 --- a/board/armltd/integrator/integrator.c +++ b/board/armltd/integrator/integrator.c @@ -115,9 +115,6 @@ extern void cm_remap(void); int misc_init_r (void) { -#ifdef CONFIG_PCI - pci_init(); -#endif setenv("verify", "n"); return (0); } |