diff options
author | Simon Glass <sjg@chromium.org> | 2017-05-17 08:22:37 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-06-05 11:02:27 -0400 |
commit | 787ea6e4537f79d0eeadfa7149f1ef5180a9aadb (patch) | |
tree | 07433da608b337cead559800803d800703124763 /include/common.h | |
parent | 4fcc6a7b89d80484f5abc673a3999d04b82d5f51 (diff) | |
download | u-boot-787ea6e4537f79d0eeadfa7149f1ef5180a9aadb.tar.gz |
common: Drop pci_master_init()
This should not be in common.h. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h index a1f1a9a949..7f9b7863b1 100644 --- a/include/common.h +++ b/include/common.h @@ -457,9 +457,6 @@ void pci_init (void); void pci_init_board(void); #if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX)) -# if defined(CONFIG_SYS_PCI_MASTER_INIT) - void pci_master_init (struct pci_controller *); -# endif #if defined(CONFIG_440SPE) || \ defined(CONFIG_460EX) || defined(CONFIG_460GT) || \ defined(CONFIG_405EX) |