From patchwork Fri Dec 2 20:44:22 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 9459183 X-Patchwork-Delegate: eduardo.valentin@ti.com Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id B274A6074E for ; Fri, 2 Dec 2016 20:44:34 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A2F3728434 for ; Fri, 2 Dec 2016 20:44:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 978BF284E3; Fri, 2 Dec 2016 20:44:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6D23F284D5 for ; Fri, 2 Dec 2016 20:44:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751752AbcLBUob (ORCPT ); Fri, 2 Dec 2016 15:44:31 -0500 Received: from www.zeus03.de ([194.117.254.33]:58560 "EHLO mail.zeus03.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751549AbcLBUoa (ORCPT ); Fri, 2 Dec 2016 15:44:30 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=sang-engineering.com; h= from:to:cc:subject:date:message-id:in-reply-to:references; s=k1; bh=ZBSK4D0XQU9TM0enxGDwkbQCUK3cGoT+wJ94M4Kn89w=; b=JWQc3H+PIqow wTpdm3D2wFfRqHNj+Qr4AQ23nuuH5dqvpnu6IeVc4MwYlRB4K9EobWkYrX6cIFCM q9npQQFElknGQtFBlWtmfTQjfpLneHBcbf9LHXCay9wyKTMszKvwRqiEgNeLBX+i S1MNiYwwrWirEPh/1a5Bj9CWyWrTBDU= Received: (qmail 14869 invoked from network); 2 Dec 2016 21:44:26 +0100 Received: from p54b33c58.dip0.t-ipconnect.de (HELO localhost) (l3s3148p1@84.179.60.88) by mail.zeus03.de with ESMTPSA (ECDHE-RSA-AES256-GCM-SHA384 encrypted, authenticated); 2 Dec 2016 21:44:26 +0100 From: Wolfram Sang To: linux-pm@vger.kernel.org Cc: linux-renesas-soc@vger.kernel.org, Zhang Rui , Eduardo Valentin , Khiem Nguyen , Kuninori Morimoto , Geert Uytterhoeven , Wolfram Sang Subject: [PATCH v4 5/4] thermal: rcar_gen3_thermal: restrict to 64BIT Date: Fri, 2 Dec 2016 21:44:22 +0100 Message-Id: <20161202204422.21832-1-wsa+renesas@sang-engineering.com> X-Mailer: git-send-email 2.10.2 In-Reply-To: <20161201220442.22057-1-wsa+renesas@sang-engineering.com> References: <20161201220442.22057-1-wsa+renesas@sang-engineering.com> Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP COMPILE_TEST triggers problems on 32 bit machines, so limit this driver to 64BIT for now. This is no loss because the hardware is only available on 64 bit SoCs anyhow. After we obtained more data from the hardware engineers, we will refactor the code to be usable with COMPILE_TEST. Signed-off-by: Wolfram Sang --- buildbot reported the problem and seems to be happy now. drivers/thermal/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig index 3912d24a07b10f..edaed1282791bf 100644 --- a/drivers/thermal/Kconfig +++ b/drivers/thermal/Kconfig @@ -247,7 +247,7 @@ config RCAR_THERMAL config RCAR_GEN3_THERMAL tristate "Renesas R-Car Gen3 thermal driver" - depends on ARCH_RENESAS || COMPILE_TEST + depends on ARCH_RENESAS && 64BIT depends on HAS_IOMEM depends on OF help