aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/drivers/pci/Makefile
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-04-20 02:43:36 -0400
committerPaul Mundt <lethal@linux-sh.org>2009-04-20 02:43:36 -0400
commit4c5107e44514a9bde74d0af77982705d602d9e39 (patch)
tree7915b112e6f81cfc90787e5fb9097032bd4212a8 /arch/sh/drivers/pci/Makefile
parent9ade1217c9ba39ad2f004a898ddfbb815fd5fe74 (diff)
sh: pci: Split out new-style PCI core.
This splits off a 'pci-new.c' which is aimed at gradually replacing the pci-auto backend and the arch/sh/drivers/pci/pci.c core respectively. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/drivers/pci/Makefile')
-rw-r--r--arch/sh/drivers/pci/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/drivers/pci/Makefile b/arch/sh/drivers/pci/Makefile
index 5003971476ec..362a1eec73a4 100644
--- a/arch/sh/drivers/pci/Makefile
+++ b/arch/sh/drivers/pci/Makefile
@@ -2,8 +2,8 @@
2# Makefile for the PCI specific kernel interface routines under Linux. 2# Makefile for the PCI specific kernel interface routines under Linux.
3# 3#
4 4
5obj-y += pci.o 5obj-$(CONFIG_PCI_AUTO) := pci.o pci-auto.o
6obj-$(CONFIG_PCI_AUTO) += pci-auto.o 6obj-$(CONFIG_PCI_NEW) := pci-new.o
7 7
8obj-$(CONFIG_CPU_SUBTYPE_SH7751) += pci-sh7751.o ops-sh4.o 8obj-$(CONFIG_CPU_SUBTYPE_SH7751) += pci-sh7751.o ops-sh4.o
9obj-$(CONFIG_CPU_SUBTYPE_SH7751R) += pci-sh7751.o ops-sh4.o 9obj-$(CONFIG_CPU_SUBTYPE_SH7751R) += pci-sh7751.o ops-sh4.o