mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
a2bd40d215
The Cirrus Logic EDB93xx development board platform init files share redundant code. The only differences are in the flash memory configuration, MACH_TYPE, and additional on-board I2C devices. This patch merges all of them into one file. Cc: Lennert Buytenhek <buytenh@wantstofly.org> Cc: Herbert Valerio Riedel <hvr@gnu.org> Cc: Toufeeq Hussain <toufeeq_hussain@infosys.com> Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Acked-by: Ryan Mallon <ryan@bluewatersys.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
14 lines
317 B
Makefile
14 lines
317 B
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
obj-y := core.o clock.o dma-m2p.o gpio.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
obj-$(CONFIG_MACH_ADSSPHERE) += adssphere.o
|
|
obj-$(CONFIG_MACH_EDB93XX) += edb93xx.o
|
|
obj-$(CONFIG_MACH_GESBC9312) += gesbc9312.o
|
|
obj-$(CONFIG_MACH_MICRO9) += micro9.o
|
|
obj-$(CONFIG_MACH_TS72XX) += ts72xx.o
|