diff options
author | Simon Glass | 2019-11-14 12:57:47 -0700 |
---|---|---|
committer | Tom Rini | 2019-12-02 18:25:25 -0500 |
commit | 2cf431c228776d9899dfb980086b86d4dd3b2473 (patch) | |
tree | 04802b4219abf36de771b8006d471afe541670f7 /board/armltd | |
parent | 5255932f0167c502fc7fce527bfe7e81df3322f9 (diff) |
common: Move pci_init_board() out of common.h
This function can be dropped when all boards use driver model for PCI. For
now, move it into init.h with a comment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/armltd')
-rw-r--r-- | board/armltd/integrator/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/armltd/integrator/pci.c b/board/armltd/integrator/pci.c index 5e57f7f4c96..c189d23eecd 100644 --- a/board/armltd/integrator/pci.c +++ b/board/armltd/integrator/pci.c @@ -20,6 +20,7 @@ * Linus Walleij <linus.walleij@linaro.org> */ #include <common.h> +#include <init.h> #include <pci.h> #include <asm/io.h> #include "integrator-sc.h" |