Browse Source

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>
Linus Walleij 13 years ago
parent
commit
4ae6a91a86
1 changed files with 0 additions and 3 deletions
  1. 0 3
      board/armltd/integrator/integrator.c

+ 0 - 3
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);
 }