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>
This commit is contained in:
Linus Walleij 2012-01-21 13:13:19 +00:00 committed by Albert ARIBAUD
parent 48a4ee50e4
commit 4ae6a91a86

View file

@ -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);
}