diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2012-04-07 23:10:17 +0200 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2012-07-18 22:39:11 +0200 |
commit | 129622672d70711c6c844fb529381ff0dad9085a (patch) | |
tree | ea05d97ec3a457814e282c5cf8423c9e30994cb9 /arch/tile/kernel/Makefile | |
parent | arch/tile: provide kernel support for the tilegx TRIO shim (diff) | |
download | linux-129622672d70711c6c844fb529381ff0dad9085a.tar.xz linux-129622672d70711c6c844fb529381ff0dad9085a.zip |
arch/tile: tilegx PCI root complex support
This change implements PCIe root complex support for tilegx using
the kernel support layer for accessing the TRIO hardware shim.
Reviewed-by: Bjorn Helgaas <bhelgaas@google.com> [changes in 07487f3]
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/kernel/Makefile')
-rw-r--r-- | arch/tile/kernel/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/tile/kernel/Makefile b/arch/tile/kernel/Makefile index 5de99248d8df..49d4ce3cd7f4 100644 --- a/arch/tile/kernel/Makefile +++ b/arch/tile/kernel/Makefile @@ -14,4 +14,8 @@ obj-$(CONFIG_SMP) += smpboot.o smp.o tlb.o obj-$(CONFIG_MODULES) += module.o obj-$(CONFIG_EARLY_PRINTK) += early_printk.o obj-$(CONFIG_KEXEC) += machine_kexec.o relocate_kernel_$(BITS).o +ifdef CONFIG_TILEGX +obj-$(CONFIG_PCI) += pci_gx.o +else obj-$(CONFIG_PCI) += pci.o +endif |