diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-11-06 02:04:54 -0800 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2015-11-13 06:46:25 -0800 |
commit | 902ca5bdf37841c0b892317be603edb41f7cbc03 (patch) | |
tree | f75e8e702c4fcf9e409f773f36b8f1d3f73b2f58 /arch/x86/cpu/pci.c | |
parent | 74514c18b444129c844797ee16b08d065917c4cc (diff) | |
download | u-boot-902ca5bdf37841c0b892317be603edb41f7cbc03.tar.gz u-boot-902ca5bdf37841c0b892317be603edb41f7cbc03.tar.xz u-boot-902ca5bdf37841c0b892317be603edb41f7cbc03.zip |
x86: Remove legacy pci codes
Now that we have converted all x86 boards to use driver model pci,
remove these legacy pci codes.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/x86/cpu/pci.c')
-rw-r--r-- | arch/x86/cpu/pci.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/arch/x86/cpu/pci.c b/arch/x86/cpu/pci.c index d2ec45a240..7a312602a0 100644 --- a/arch/x86/cpu/pci.c +++ b/arch/x86/cpu/pci.c @@ -19,51 +19,6 @@ DECLARE_GLOBAL_DATA_PTR; -static struct pci_controller x86_hose; - -int pci_early_init_hose(struct pci_controller **hosep) -{ - struct pci_controller *hose; - - hose = calloc(1, sizeof(struct pci_controller)); - if (!hose) - return -ENOMEM; - - board_pci_setup_hose(hose); - pci_setup_type1(hose); - hose->last_busno = pci_hose_scan(hose); - gd->hose = hose; - *hosep = hose; - - return 0; -} - -__weak int board_pci_pre_scan(struct pci_controller *hose) -{ - return 0; -} - -__weak int board_pci_post_scan(struct pci_controller *hose) -{ - return 0; -} - -void pci_init_board(void) -{ - struct pci_controller *hose = &x86_hose; - - /* Stop using the early hose */ - gd->hose = NULL; - - board_pci_setup_hose(hose); - pci_setup_type1(hose); - pci_register_hose(hose); - - board_pci_pre_scan(hose); - hose->last_busno = pci_hose_scan(hose); - board_pci_post_scan(hose); -} - static struct pci_controller *get_hose(void) { if (gd->hose) |