From: Ben Dooks <ben-linux@fluff.org>
Date: Fri, 31 Oct 2008 16:14:57 +0000 (+0000)
Subject: [ARM] SMDK6410: Add second I2C channel.
X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=d7ea3743ca9939eb71931dedb613d14ff7201d02;p=linux.git

[ARM] SMDK6410: Add second I2C channel.

Add the second I2C channel on the SMDK6410.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
---

diff --git a/arch/arm/mach-s3c6410/Kconfig b/arch/arm/mach-s3c6410/Kconfig
index 32bdc93fc1ff2..2462693a11287 100644
--- a/arch/arm/mach-s3c6410/Kconfig
+++ b/arch/arm/mach-s3c6410/Kconfig
@@ -23,6 +23,8 @@ config MACH_SMDK6410
 	bool "SMDK6410"
 	select CPU_S3C6410
 	select S3C_DEV_HSMMC
+	select S3C_DEV_I2C1
 	select S3C6410_SETUP_SDHCI
+	select S3C64XX_SETUP_I2C1
 	help
 	  Machine support for the Samsung SMDK6410
diff --git a/arch/arm/mach-s3c6410/mach-smdk6410.c b/arch/arm/mach-s3c6410/mach-smdk6410.c
index d58c83d31a066..8d7101aab7594 100644
--- a/arch/arm/mach-s3c6410/mach-smdk6410.c
+++ b/arch/arm/mach-s3c6410/mach-smdk6410.c
@@ -65,6 +65,7 @@ struct map_desc smdk6410_iodesc[] = {};
 static struct platform_device *smdk6410_devices[] __initdata = {
 	&s3c_device_hsmmc0,
 	&s3c_device_i2c0,
+	&s3c_device_i2c1,
 };
 
 extern void s3c64xx_init_io(struct map_desc *, int);
@@ -79,6 +80,7 @@ static void __init smdk6410_map_io(void)
 static void __init smdk6410_machine_init(void)
 {
 	s3c_i2c0_set_platdata(NULL);
+	s3c_i2c1_set_platdata(NULL);
 	platform_add_devices(smdk6410_devices, ARRAY_SIZE(smdk6410_devices));
 }