diff options
author | Ramon Fried | 2019-04-27 11:15:23 +0300 |
---|---|---|
committer | Tom Rini | 2019-07-11 10:05:15 -0400 |
commit | bb413337826ef1a1445ff9fb33424fd231430228 (patch) | |
tree | 4011c3b978604d2b39427500c83a589a64d5dbe7 /drivers/pci_endpoint/Makefile | |
parent | c2ccc9e5cb9ac5547e063bc2bf35f6340b8f9362 (diff) |
pci_ep: add pci endpoint sandbox driver
Add a dummy PCI endpoint for sandbox.
Supporting only a single function, it allows setting
and reading header configuration.
Signed-off-by: Ramon Fried <ramon.fried@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/pci_endpoint/Makefile')
-rw-r--r-- | drivers/pci_endpoint/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci_endpoint/Makefile b/drivers/pci_endpoint/Makefile index 0a849deb19a..3cd987259d3 100644 --- a/drivers/pci_endpoint/Makefile +++ b/drivers/pci_endpoint/Makefile @@ -5,3 +5,4 @@ obj-y += pci_ep-uclass.o obj-$(CONFIG_PCIE_CADENCE_EP) += pcie-cadence-ep.o +obj-$(CONFIG_PCI_SANDBOX_EP) += sandbox-pci_ep.o |