diff options
author | Simon Glass <sjg@chromium.org> | 2019-02-16 20:24:40 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2019-02-20 15:21:44 +0800 |
commit | 11503be4480d5091fb59c563a0c357b6967c24ba (patch) | |
tree | 1084c3362e519a343fa6313d39efd3dfd8b6de56 /include/pci.h | |
parent | 2b5d029db8a6875a19e60e2e29e9dbe1d5d78968 (diff) | |
download | u-boot-11503be4480d5091fb59c563a0c357b6967c24ba.tar.gz |
pci: Don't export pci_hose_config_device()
This function is not used outside this file so make it static.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/pci.h')
-rw-r--r-- | include/pci.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/pci.h b/include/pci.h index 041f8e3747..dd5f051989 100644 --- a/include/pci.h +++ b/include/pci.h @@ -735,12 +735,6 @@ extern pci_dev_t pci_find_device (unsigned int vendor, unsigned int device, int extern pci_dev_t pci_find_devices (struct pci_device_id *ids, int index); pci_dev_t pci_find_class(unsigned int find_class, int index); -extern int pci_hose_config_device(struct pci_controller *hose, - pci_dev_t dev, - unsigned long io, - pci_addr_t mem, - unsigned long command); - extern int pci_hose_find_capability(struct pci_controller *hose, pci_dev_t dev, int cap); extern int pci_hose_find_cap_start(struct pci_controller *hose, pci_dev_t dev, |