2c97886df9
This patch adds helper functions for I2C channel 0 and 1, GPIO configurations for I2C on S5P6440 and support I2C-0/1 devices on SMDK6440. Signed-off-by: Naveen Krishna Ch <ch.naveen@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com> Conflicts: arch/arm/mach-s5p6440/Kconfig arch/arm/mach-s5p6440/include/mach/map.h arch/arm/mach-s5p6440/mach-smdk6440.c
26 lines
529 B
Makefile
26 lines
529 B
Makefile
# arch/arm/mach-s5p6440/Makefile
|
|
#
|
|
# Copyright (c) 2009 Samsung Electronics Co., Ltd.
|
|
# http://www.samsung.com/
|
|
#
|
|
# Licensed under GPLv2
|
|
|
|
obj-y :=
|
|
obj-m :=
|
|
obj-n :=
|
|
obj- :=
|
|
|
|
# Core support for S5P6440 system
|
|
|
|
obj-$(CONFIG_CPU_S5P6440) += cpu.o init.o clock.o gpio.o dma.o
|
|
obj-$(CONFIG_CPU_S5P6440) += setup-i2c0.o
|
|
|
|
# machine support
|
|
|
|
obj-$(CONFIG_MACH_SMDK6440) += mach-smdk6440.o
|
|
|
|
# device support
|
|
obj-y += dev-audio.o
|
|
obj-$(CONFIG_S3C64XX_DEV_SPI) += dev-spi.o
|
|
obj-$(CONFIG_S5P6440_SETUP_I2C1) += setup-i2c1.o
|