diff options
author | Arnd Bergmann <arnd@arndb.de> | 2007-06-18 01:06:58 +0200 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-06-29 01:57:00 -0500 |
commit | d3c7ffabf0ce31026b2e43490ff694d70c0fbd3a (patch) | |
tree | ef06cf5c9b5d374d97547d14f3a78625a26e75ce /arch/powerpc/platforms/chrp/Makefile | |
parent | d66584086717f6dda76d523ef58363deaa3efe51 (diff) | |
download | kernel_samsung_aries-d3c7ffabf0ce31026b2e43490ff694d70c0fbd3a.zip kernel_samsung_aries-d3c7ffabf0ce31026b2e43490ff694d70c0fbd3a.tar.gz kernel_samsung_aries-d3c7ffabf0ce31026b2e43490ff694d70c0fbd3a.tar.bz2 |
[POWERPC] disallow building powermac and tsi108 without PCI
The TSI108 code and the 32 bit powermac and chrp platforms
have dependency on PCI that is not easy or desirable to get rid
of.
The easiest fix is to always select CONFIG_PCI if one of those
platforms is enabled.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/powerpc/platforms/chrp/Makefile')
-rw-r--r-- | arch/powerpc/platforms/chrp/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/chrp/Makefile b/arch/powerpc/platforms/chrp/Makefile index 902feb1..4b3bfad 100644 --- a/arch/powerpc/platforms/chrp/Makefile +++ b/arch/powerpc/platforms/chrp/Makefile @@ -1,4 +1,3 @@ -obj-y += setup.o time.o pegasos_eth.o -obj-$(CONFIG_PCI) += pci.o +obj-y += setup.o time.o pegasos_eth.o pci.o obj-$(CONFIG_SMP) += smp.o obj-$(CONFIG_NVRAM) += nvram.o |