mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
80789e7915
Add the necessary code to support IRQ_EINT(x) on the S3C64XX series of CPUs. Note, since there is no GPIO configuration support in the kernel, the irq set_type method does not configure the relevant pin to interrupt. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
25 lines
417 B
Makefile
25 lines
417 B
Makefile
# arch/arm/plat-s3c64xx/Makefile
|
|
#
|
|
# Copyright 2008 Openmoko, Inc.
|
|
# Copyright 2008 Simtec Electronics
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n := dummy.o
|
|
obj- :=
|
|
|
|
# Core files
|
|
|
|
obj-y += dev-uart.o
|
|
obj-y += cpu.o
|
|
obj-y += irq.o
|
|
obj-y += irq-eint.o
|
|
obj-y += clock.o
|
|
|
|
# CPU support
|
|
|
|
obj-$(CONFIG_CPU_S3C6400_INIT) += s3c6400-init.o
|
|
obj-$(CONFIG_CPU_S3C6400_CLOCK) += s3c6400-clock.o
|