From patchwork Wed Nov 14 06:48:24 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 12830 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 2347823FC0 for ; Wed, 14 Nov 2012 06:54:20 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id B9B7FA19552 for ; Wed, 14 Nov 2012 06:54:19 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so139345iej.11 for ; Tue, 13 Nov 2012 22:54:19 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=Twya1IPy6Ayw/FiRE4ILpvlR2EJPJE/XHs0J/QNBRRs=; b=jjgU/XmQSGWnqbBPe3UrK/SEWoOfMzbvHnr4PshWPYiPJOhVGnFXDn0F7N7Ge5vwr5 dEySkZM422acHDBnGyffP0yHH/4WhLgL4WG3vJ4eZkTvsGaRBQBWGQJmt8/NREK1a133 NZy0NOwOrtplCSHCgsy0S3nWrkZKTp+JG32lGF6XriaBnPJmTNKLLqVXLT1Im3+QnofG 7nbhM9mZ0AWvGJHpgqJuw4Zw51aHQDl2rHmQ3wns11XSO9La5dKbxeCugz3AjedpJ8V8 OBdNkfqYQtyAiQ+JF4rxVu1yF8mwh9j6ksIQYO+3oQgE7v3x5yES1NZ5CoBkRK+7h7J2 fY7w== Received: by 10.43.125.133 with SMTP id gs5mr5798884icc.54.1352876059079; Tue, 13 Nov 2012 22:54:19 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp621801igt; Tue, 13 Nov 2012 22:54:18 -0800 (PST) Received: by 10.66.86.102 with SMTP id o6mr3939161paz.11.1352876058432; Tue, 13 Nov 2012 22:54:18 -0800 (PST) Received: from mail-pa0-f49.google.com (mail-pa0-f49.google.com [209.85.220.49]) by mx.google.com with ESMTPS id oi10si16929172pbb.158.2012.11.13.22.54.18 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Nov 2012 22:54:18 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.49 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.49; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.49 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f49.google.com with SMTP id bi5so88621pad.36 for ; Tue, 13 Nov 2012 22:54:18 -0800 (PST) Received: by 10.68.191.200 with SMTP id ha8mr74980368pbc.51.1352876058165; Tue, 13 Nov 2012 22:54:18 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id gu5sm7277018pbc.10.2012.11.13.22.54.15 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Nov 2012 22:54:17 -0800 (PST) From: Sachin Kamat To: linux-pm@vger.kernel.org Cc: rui.zhang@intel.com, durgadoss.r@intel.com, sachin.kamat@linaro.org, patches@linaro.org, akpm@linux-foundation.org, Amit Daniel Kachhap Subject: [PATCH 1/1] thermal: Exynos: Add missing dependency Date: Wed, 14 Nov 2012 12:18:24 +0530 Message-Id: <1352875704-2178-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQm7Y/1JTo21na2tNe2mSF6k62oFOZ1Mevk/1xLh6GNFsNrxkXT2+0CS7WETMtcsnLEMyVRj CPU_FREQ_TABLE depends on CPU_FREQ. Selecting CPU_FREQ_TABLE without checking for dependencies gives the following compilation warnings: warning: (ARCH_TEGRA_2x_SOC && ARCH_TEGRA_3x_SOC && UX500_SOC_DB8500 && CPU_THERMAL && EXYNOS_THERMAL) selects CPU_FREQ_TABLE which has unmet direct dependencies (ARCH_HAS_CPUFREQ && CPU_FREQ) Cc: Amit Daniel Kachhap Signed-off-by: Sachin Kamat --- Build tested using exynos4_defconfig on linux-next tree of 20121114. --- drivers/thermal/Kconfig | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig index 266c15e..197b7db 100644 --- a/drivers/thermal/Kconfig +++ b/drivers/thermal/Kconfig @@ -50,7 +50,7 @@ config RCAR_THERMAL config EXYNOS_THERMAL tristate "Temperature sensor on Samsung EXYNOS" - depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) && THERMAL + depends on (ARCH_EXYNOS4 || ARCH_EXYNOS5) && THERMAL && CPU_FREQ select CPU_FREQ_TABLE help If you say yes here you get support for TMU (Thermal Managment