From patchwork Wed Nov 14 06:45:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 12829 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 8789E23E28 for ; Wed, 14 Nov 2012 06:51:34 +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 3288BA18E42 for ; Wed, 14 Nov 2012 06:51:34 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so137530iej.11 for ; Tue, 13 Nov 2012 22:51:33 -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=a4wQ/1mB1li6piKZnz7dCqc+OopL19diD3/AHZ4AhvvOdLgIIJ00G/HciMNRLq5tEl EOjt91R4d8NlqamBaebNg7/GdpRKZMJJTZxzCG4zipDr5YrgL5zOeKJg2GCNSzlp/A3W rolYopNeNqbhUS2BBaxnLgCCBkOlKUi9O22LBm6ZRoKxxVvqCm/MCjQ6hcwcq6RVbynz nzMpdf6JjUH+8QDH6PYY/HgoTWTMwt0+xq+xtQsYBXrqMwv0McZuYDH4ErV7dSj4iXBn O1kPnhYPV8H4phjG+mYeYL0ojsoNmpZqkOGBbJmEYAybw61BQZV/lC9lQ5vTRaMWKRYn ah6Q== Received: by 10.43.46.2 with SMTP id um2mr16602991icb.18.1352875893640; Tue, 13 Nov 2012 22:51:33 -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 n20csp621635igt; Tue, 13 Nov 2012 22:51:33 -0800 (PST) Received: by 10.68.233.136 with SMTP id tw8mr69233360pbc.133.1352875892728; Tue, 13 Nov 2012 22:51:32 -0800 (PST) Received: from mail-pb0-f48.google.com (mail-pb0-f48.google.com [209.85.160.48]) by mx.google.com with ESMTPS id zo3si16922502pbc.150.2012.11.13.22.51.29 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Nov 2012 22:51:32 -0800 (PST) Received-SPF: neutral (google.com: 209.85.160.48 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.48; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.48 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-pb0-f48.google.com with SMTP id rq13so150152pbb.7 for ; Tue, 13 Nov 2012 22:51:29 -0800 (PST) Received: by 10.68.138.137 with SMTP id qq9mr5800363pbb.74.1352875889740; Tue, 13 Nov 2012 22:51:29 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id uh10sm7267603pbc.35.2012.11.13.22.51.26 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Nov 2012 22:51:29 -0800 (PST) From: Sachin Kamat To: linux-kernel@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:15:29 +0530 Message-Id: <1352875529-1816-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQnH948X98ycQExgmKBzFbnCTzH5IWqERsgYa/WGv9C1gipZqIl0akLhjkBMjyhKQogk/Nry 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