diff options
| author | Wolfgang Denk <wd@denx.de> | 2009-10-09 00:03:18 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2009-10-09 00:03:18 +0200 | 
| commit | cd77dd109c4a439519a78c32eddc42bdebc7a61f (patch) | |
| tree | c5534647cb1786044ef0f7e4ad4067725eddf11d /board/mpl/common/pci.c | |
| parent | 95c44ec485b46ffb43dbdaa299f1491a500fdadf (diff) | |
| parent | afc3ba0fc4195624e79e21244380ed7cc2fd6969 (diff) | |
| download | olio-uboot-2014.01-cd77dd109c4a439519a78c32eddc42bdebc7a61f.tar.xz olio-uboot-2014.01-cd77dd109c4a439519a78c32eddc42bdebc7a61f.zip | |
Merge branch 'reloc'
Diffstat (limited to 'board/mpl/common/pci.c')
| -rw-r--r-- | board/mpl/common/pci.c | 18 | 
1 files changed, 0 insertions, 18 deletions
| diff --git a/board/mpl/common/pci.c b/board/mpl/common/pci.c index e0ba620d1..f9bb6ab2b 100644 --- a/board/mpl/common/pci.c +++ b/board/mpl/common/pci.c @@ -94,29 +94,11 @@ static struct pci_controller hose = {  }; -static void reloc_pci_cfg_table(struct pci_config_table *table) -{ -	unsigned long addr; - -	for (; table && table->vendor; table++) { -		addr = (ulong) (table->config_device) + gd->reloc_off; -#ifdef DEBUG -		printf ("device \"%d\": 0x%08lx => 0x%08lx\n", -				table->device, (ulong) (table->config_device), addr); -#endif -		table->config_device = -			(void (*)(struct pci_controller* hose, pci_dev_t dev, -			      struct pci_config_table *))addr; -		table->priv[0]+=gd->reloc_off; -	} -} -  void pci_init_board(void)  {  	/*we want the ptrs to RAM not flash (ie don't use init list)*/  	hose.fixup_irq    = pci_pip405_fixup_irq;  	hose.config_table = pci_pip405_config_table; -	reloc_pci_cfg_table(hose.config_table);  #ifdef DEBUG  	printf("Init PCI: fixup_irq=%p config_table=%p hose=%p\n",pci_pip405_fixup_irq,pci_pip405_config_table,hose);  #endif |