mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
ca90666287
* 'gpio' of http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm: (43 commits) ARM: 7135/1: ep93xx: bring back missing <mach/gpio.h> ARM: 7104/1: plat-pxa: break out GPIO driver specifics ARM: 7103/1: plat-pxa: move PXA GPIO driver to GPIO subsystem ARM: 7042/3: mach-ep93xx: break out GPIO driver specifics ARM: 7101/1: arm/tegra: Replace <mach/gpio.h> with <mach/gpio-tegra.h> ARM: 7094/1: arm/tegra: Move EN_VDD_1V05_GPIO to board-harmony.h ARM: 7083/1: rewrite U300 GPIO to use gpiolib ARM: 7074/1: gpio: davinci: eliminate unused variable warnings ARM: 7063/1: Orion: gpio: add missing include of linux/types.h ARM: 7055/1: arm/tegra: mach/gpio.h: include linux/types.h to fix build ARM: 7054/1: arm/tegra: Delete custom gpio_to_irq, and irq_to_gpio ARM: 7053/1: gpio/tegra: Implement gpio_chip.to_irq ARM: 7052/1: gpio/tegra: Remove use of irq_to_gpio ARM: 7057/1: mach-pnx4008: rename GPIO header ARM: 7056/1: plat-nomadik: kill off <plat/gpio.h> ARM: 7050/1: mach-sa1100: delete irq_to_gpio() function ARM: 7049/1: mach-sa1100: move SA1100 GPIO driver to GPIO subsystem ARM: 7045/1: mach-lpc32xx: break out GPIO driver specifics ARM: 7044/1: mach-lpc32xx: move LPC32XX GPIO driver to GPIO subsystem ARM: 7043/1: mach-ixp2000: rename GPIO header ... Fix up trivial conflicts in arch/arm/mach-u300/Kconfig manually
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# Common support
|
|
obj-y := clock.o generic.o irq.o dma.o time.o #nmi-oopser.o
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
led-y := leds.o
|
|
|
|
obj-$(CONFIG_CPU_FREQ_SA1100) += cpu-sa1100.o
|
|
obj-$(CONFIG_CPU_FREQ_SA1110) += cpu-sa1110.o
|
|
|
|
# Specific board support
|
|
obj-$(CONFIG_SA1100_ASSABET) += assabet.o
|
|
led-$(CONFIG_SA1100_ASSABET) += leds-assabet.o
|
|
obj-$(CONFIG_ASSABET_NEPONSET) += neponset.o
|
|
|
|
obj-$(CONFIG_SA1100_BADGE4) += badge4.o
|
|
led-$(CONFIG_SA1100_BADGE4) += leds-badge4.o
|
|
|
|
obj-$(CONFIG_SA1100_CERF) += cerf.o
|
|
led-$(CONFIG_SA1100_CERF) += leds-cerf.o
|
|
|
|
obj-$(CONFIG_SA1100_COLLIE) += collie.o
|
|
|
|
obj-$(CONFIG_SA1100_H3100) += h3100.o h3xxx.o
|
|
obj-$(CONFIG_SA1100_H3600) += h3600.o h3xxx.o
|
|
|
|
obj-$(CONFIG_SA1100_HACKKIT) += hackkit.o
|
|
led-$(CONFIG_SA1100_HACKKIT) += leds-hackkit.o
|
|
|
|
obj-$(CONFIG_SA1100_JORNADA720) += jornada720.o
|
|
obj-$(CONFIG_SA1100_JORNADA720_SSP) += jornada720_ssp.o
|
|
|
|
obj-$(CONFIG_SA1100_LART) += lart.o
|
|
led-$(CONFIG_SA1100_LART) += leds-lart.o
|
|
|
|
obj-$(CONFIG_SA1100_NANOENGINE) += nanoengine.o
|
|
obj-$(CONFIG_PCI_NANOENGINE) += pci-nanoengine.o
|
|
|
|
obj-$(CONFIG_SA1100_PLEB) += pleb.o
|
|
|
|
obj-$(CONFIG_SA1100_SHANNON) += shannon.o
|
|
|
|
obj-$(CONFIG_SA1100_SIMPAD) += simpad.o
|
|
|
|
# LEDs support
|
|
obj-$(CONFIG_LEDS) += $(led-y)
|
|
|
|
# Miscellaneous functions
|
|
obj-$(CONFIG_PM) += pm.o sleep.o
|
|
obj-$(CONFIG_SA1100_SSP) += ssp.o
|
|
|