diff options
author | Simon Glass <sjg@chromium.org> | 2015-03-05 12:25:26 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-16 19:27:43 -0600 |
commit | 9569c40668290408eac447f9be99dab603c8e34c (patch) | |
tree | f476d89aaed8887ebca97da08da07abc2c455fe3 /arch/sandbox/lib/Makefile | |
parent | ff3e077bd23c37c83d01aad105e528194e33d75e (diff) | |
download | u-boot-9569c40668290408eac447f9be99dab603c8e34c.tar.gz |
dm: sandbox: pci: Add PCI support for sandbox
Add the required header information, device tree nodes and I/O accessor
functions to support PCI on sandbox. All devices are emulated by drivers
which can be added as required for testing or development.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/lib/Makefile')
-rw-r--r-- | arch/sandbox/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sandbox/lib/Makefile b/arch/sandbox/lib/Makefile index 4c1a38d6bc..75b135cfc0 100644 --- a/arch/sandbox/lib/Makefile +++ b/arch/sandbox/lib/Makefile @@ -7,5 +7,5 @@ # SPDX-License-Identifier: GPL-2.0+ # - obj-y += interrupts.o +obj-$(CONFIG_PCI) += pci_io.o |