mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
2f6c2ac1d9
Squash the SDHCI setup for both the S3C6400 and S3C6410 into one file and make the S3C6410 case use the S3C6400 code. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
29 lines
594 B
Makefile
29 lines
594 B
Makefile
# arch/arm/mach-s3c64xx/Makefile
|
|
#
|
|
# Copyright 2008 Openmoko, Inc.
|
|
# Copyright 2008 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core support for S3C6400 system
|
|
|
|
obj-$(CONFIG_CPU_S3C6400) += s3c6400.o
|
|
obj-$(CONFIG_CPU_S3C6410) += s3c6410.o
|
|
|
|
# setup support
|
|
|
|
obj-$(CONFIG_S3C64XX_SETUP_SDHCI) += setup-sdhci.o
|
|
|
|
# Machine support
|
|
|
|
obj-$(CONFIG_MACH_ANW6410) += mach-anw6410.o
|
|
obj-$(CONFIG_MACH_SMDK6400) += mach-smdk6400.o
|
|
obj-$(CONFIG_MACH_SMDK6410) += mach-smdk6410.o
|
|
obj-$(CONFIG_MACH_NCP) += mach-ncp.o
|
|
obj-$(CONFIG_MACH_HMT) += mach-hmt.o
|