From patchwork Thu Sep 10 04:11:10 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Valentin X-Patchwork-Id: 7150471 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 09E079F39B for ; Thu, 10 Sep 2015 04:13:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id CDBD3208D6 for ; Thu, 10 Sep 2015 04:13:48 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id EDE7B209DA for ; Thu, 10 Sep 2015 04:13:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754387AbbIJENW (ORCPT ); Thu, 10 Sep 2015 00:13:22 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:34814 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753572AbbIJEMK (ORCPT ); Thu, 10 Sep 2015 00:12:10 -0400 Received: by padhy16 with SMTP id hy16so30214772pad.1; Wed, 09 Sep 2015 21:12:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=k0wHRHVVSuQ/HPRFWCU7KukBnAWtJ6jL8h6Jn0rMFsM=; b=Jny30lBd6dlFOKg8NXpDnkpx4V1jRDDSjaqG1dm6Pvkgjc8Dg5yXfW4Or8whhwFfiP K2MVZBlGCuWP5p28Lqz+4I7RE9H7Mu5s62F22J5s8AFMlm3+RlY7oyZqmgvxO7KtTxpZ BsSzeaUpOllOWV/M5Me8QGbeuv4TlXakt3L1an+55htQ1ATOZc1liPa6mqQ4dEYoYlWV s2rp4SzZnQxUNsJ0kmjXHYfRfEV1tHddaNMxDljgNzox1Mb6JRnLTtqK1PK/X/+vvnd3 FG5nlySRWm/osbTzBjbNBv+DJjL92hj+HuEHhaqzx3JkRDKC7WOCkHR+BJmYQi2c3pxw ZoNw== X-Received: by 10.66.141.141 with SMTP id ro13mr70013397pab.68.1441858329466; Wed, 09 Sep 2015 21:12:09 -0700 (PDT) Received: from localhost ([2601:647:4200:88bc:399f:4884:79bb:71bb]) by smtp.gmail.com with ESMTPSA id im2sm8983544pbc.34.2015.09.09.21.12.08 (version=TLS1_2 cipher=AES128-SHA256 bits=128/128); Wed, 09 Sep 2015 21:12:08 -0700 (PDT) From: Eduardo Valentin To: Rui Zhang Cc: Linux PM , LKML , Eduardo Valentin , Lukasz Majewski , linux-samsung-soc@vger.kernel.org Subject: [PATCH 14/17] thermal: exynos: allow compile test Date: Wed, 9 Sep 2015 21:11:10 -0700 Message-Id: <1441858273-4017-15-git-send-email-edubezval@gmail.com> X-Mailer: git-send-email 2.5.0 In-Reply-To: <1441858273-4017-1-git-send-email-edubezval@gmail.com> References: <1441858273-4017-1-git-send-email-edubezval@gmail.com> Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Adding COMPILE_TEST flag to exynos driver to facilitate maintenance. Cc: Lukasz Majewski Cc: Zhang Rui Cc: linux-pm@vger.kernel.org Cc: linux-samsung-soc@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Eduardo Valentin --- drivers/thermal/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig index 0fa5d20..9069cc7 100644 --- a/drivers/thermal/Kconfig +++ b/drivers/thermal/Kconfig @@ -345,7 +345,7 @@ source "drivers/thermal/ti-soc-thermal/Kconfig" endmenu menu "Samsung thermal drivers" -depends on ARCH_EXYNOS +depends on ARCH_EXYNOS || COMPILE_TEST source "drivers/thermal/samsung/Kconfig" endmenu