diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-03-30 17:36:23 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-03-30 17:36:23 +0000 |
commit | 2b5eb3712350d65d3eacb3ae468aae5e846b27b3 (patch) | |
tree | 1f2469c4689462cf69c441166b74d634e81e4aac /Makefile.objs | |
parent | add85a76bb3b589ad38710ca24f5a10f1446d5e7 (diff) |
Compile most PPC devices only once
Make byte swapping unconditional since PPC is big endian.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.objs b/Makefile.objs index 3968c35ac8..233fbbaeaa 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -154,6 +154,20 @@ hw-obj-$(CONFIG_ACPI) += acpi.o # PPC devices hw-obj-$(CONFIG_OPENPIC) += openpic.o hw-obj-$(CONFIG_PREP_PCI) += prep_pci.o +# Mac shared devices +hw-obj-$(CONFIG_MACIO) += macio.o +hw-obj-$(CONFIG_CUDA) += cuda.o +hw-obj-$(CONFIG_ADB) += adb.o +hw-obj-$(CONFIG_MAC_NVRAM) += mac_nvram.o +hw-obj-$(CONFIG_MAC_DBDMA) += mac_dbdma.o +# OldWorld PowerMac +hw-obj-$(CONFIG_HEATHROW_PIC) += heathrow_pic.o +hw-obj-$(CONFIG_GRACKLE_PCI) += grackle_pci.o +# NewWorld PowerMac +hw-obj-$(CONFIG_UNIN_PCI) += unin_pci.o +hw-obj-$(CONFIG_DEC_PCI) += dec_pci.o +# PowerPC E500 boards +hw-obj-$(CONFIG_PPCE500_PCI) += ppce500_pci.o # PCI watchdog devices hw-obj-y += wdt_i6300esb.o |