From patchwork Wed Apr 13 09:28:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tushar Behera X-Patchwork-Id: 994 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:48:06 -0000 Delivered-To: patches@linaro.org Received: by 10.68.59.138 with SMTP id z10cs290101pbq; Wed, 13 Apr 2011 02:28:26 -0700 (PDT) Received: by 10.236.192.196 with SMTP id i44mr10031284yhn.513.1302686905850; Wed, 13 Apr 2011 02:28:25 -0700 (PDT) Received: from mail-pw0-f50.google.com (mail-pw0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id 23si772757yhl.263.2011.04.13.02.28.23 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 13 Apr 2011 02:28:24 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) smtp.mail=tushar.behera@linaro.org Received: by pwi3 with SMTP id 3so302901pwi.37 for ; Wed, 13 Apr 2011 02:28:23 -0700 (PDT) Received: by 10.142.151.4 with SMTP id y4mr2121673wfd.133.1302686902865; Wed, 13 Apr 2011 02:28:22 -0700 (PDT) Received: from [10.10.10.29] ([115.113.119.130]) by mx.google.com with ESMTPS id m10sm566634wfl.23.2011.04.13.02.28.19 (version=SSLv3 cipher=OTHER); Wed, 13 Apr 2011 02:28:21 -0700 (PDT) Message-ID: <4DA56CB1.20307@linaro.org> Date: Wed, 13 Apr 2011 14:58:17 +0530 From: Tushar Behera User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8 MIME-Version: 1.0 To: tushar.behera@linaro.org CC: patches@linaro.org Subject: Fwd: [PATCH] I2C:SAMSUNG:Select I2C_S3C2410 if HAVE_S3C2410_I2C -------- Original Message -------- Subject: [PATCH] I2C:SAMSUNG:Select I2C_S3C2410 if HAVE_S3C2410_I2C Date: Thu, 24 Mar 2011 14:36:13 +0530 From: Tushar Behera To: linux-samsung-soc@vger.kernel.org, linux-i2c@vger.kernel.org CC: kgene.kim@samsung.com, ben-linux@fluff.org On Samsung Kconfig files, HAVE_S3C2410_I2C is selected if we want to enable support for I2C. But the I2C controller is selected only if I2C_S3C2410 is defined. This patch selects I2C_S3C2410 when I2C and HAVE_S3C2410 are selected. Signed-off-by: Tushar Behera --- drivers/i2c/busses/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index 113505a..410846c 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig @@ -549,6 +549,7 @@ config HAVE_S3C2410_I2C config I2C_S3C2410 tristate "S3C2410 I2C Driver" depends on HAVE_S3C2410_I2C + default y help Say Y here to include support for I2C controller in the Samsung SoCs.