diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 18:01:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 18:01:05 -0400 |
commit | f6e6e883730aff2718610d3eba7608fcf73328ed (patch) | |
tree | ec595db5e2454ac5f505a2ce971e45d674f8d6b3 /arch/arm/mach-ixp4xx/Makefile | |
parent | ba262e4a4d4c23b5e6c15dbb3a99696b562e8035 (diff) | |
parent | f964c303fe33b0d2ee563349bc8bea4d57d7a265 (diff) |
Merge master.kernel.org:/home/rmk/linux-2.6-arm
* master.kernel.org:/home/rmk/linux-2.6-arm:
[ARM] 3657/1: S3C24XX: Documentation update of Overview.txt
[ARM] Update mach-types
[ARM] 3656/1: S3C2412: Add S3C2412 and S3C2413 documenation
[ARM] 3654/1: add ajeco 1arm sbc support
[ARM] fix drivers/mfd/ucb1x00-core.c IRQ probing bug
[ARM] 3651/1: S3C24XX: Make arch list more detailed
[ARM] 3650/1: S3C2412: Update s3c2410_defconfig
[ARM] 3649/1: S3C24XX: Fix capitalisation of CPU on SMDK2440
[ARM] 3612/1: make pci bus optional for ixp4xx platform
[ARM] Remove MODE_(SVC|IRQ|FIQ|USR) and DEFAULT_FIQ
[ARM] Remove save_lr/restore_pc macros
[ARM] Remove partial non-v6 binutils compatibility
[ARM] Remove LOADREGS macro
[ARM] Remove RETINSTR macro
Diffstat (limited to 'arch/arm/mach-ixp4xx/Makefile')
-rw-r--r-- | arch/arm/mach-ixp4xx/Makefile | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/arch/arm/mach-ixp4xx/Makefile b/arch/arm/mach-ixp4xx/Makefile index 5a4aaa0e0a09..640315d8b96a 100644 --- a/arch/arm/mach-ixp4xx/Makefile +++ b/arch/arm/mach-ixp4xx/Makefile | |||
@@ -2,13 +2,23 @@ | |||
2 | # Makefile for the linux kernel. | 2 | # Makefile for the linux kernel. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-pci-y := | ||
6 | obj-pci-n := | ||
7 | |||
8 | obj-pci-$(CONFIG_ARCH_IXDP4XX) += ixdp425-pci.o | ||
9 | obj-pci-$(CONFIG_MACH_IXDPG425) += ixdpg425-pci.o | ||
10 | obj-pci-$(CONFIG_ARCH_ADI_COYOTE) += coyote-pci.o | ||
11 | obj-pci-$(CONFIG_MACH_GTWX5715) += gtwx5715-pci.o | ||
12 | obj-pci-$(CONFIG_MACH_NSLU2) += nslu2-pci.o | ||
13 | obj-pci-$(CONFIG_MACH_NAS100D) += nas100d-pci.o | ||
14 | |||
5 | obj-y += common.o | 15 | obj-y += common.o |
6 | 16 | ||
7 | obj-$(CONFIG_PCI) += common-pci.o | 17 | obj-$(CONFIG_ARCH_IXDP4XX) += ixdp425-setup.o |
8 | obj-$(CONFIG_ARCH_IXDP4XX) += ixdp425-pci.o ixdp425-setup.o | 18 | obj-$(CONFIG_MACH_IXDPG425) += coyote-setup.o |
9 | obj-$(CONFIG_MACH_IXDPG425) += ixdpg425-pci.o coyote-setup.o | 19 | obj-$(CONFIG_ARCH_ADI_COYOTE) += coyote-setup.o |
10 | obj-$(CONFIG_ARCH_ADI_COYOTE) += coyote-pci.o coyote-setup.o | 20 | obj-$(CONFIG_MACH_GTWX5715) += gtwx5715-setup.o |
11 | obj-$(CONFIG_MACH_GTWX5715) += gtwx5715-pci.o gtwx5715-setup.o | 21 | obj-$(CONFIG_MACH_NSLU2) += nslu2-setup.o nslu2-power.o |
12 | obj-$(CONFIG_MACH_NSLU2) += nslu2-pci.o nslu2-setup.o nslu2-power.o | 22 | obj-$(CONFIG_MACH_NAS100D) += nas100d-setup.o nas100d-power.o |
13 | obj-$(CONFIG_MACH_NAS100D) += nas100d-pci.o nas100d-setup.o nas100d-power.o | ||
14 | 23 | ||
24 | obj-$(CONFIG_PCI) += $(obj-pci-$(CONFIG_PCI)) common-pci.o | ||