From patchwork Tue Aug 4 00:09:47 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fengguang Wu X-Patchwork-Id: 6933501 X-Patchwork-Delegate: rui.zhang@intel.com Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 9654AC05AC for ; Tue, 4 Aug 2015 00:10:35 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B612720611 for ; Tue, 4 Aug 2015 00:10:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B7D6F205F7 for ; Tue, 4 Aug 2015 00:10:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754295AbbHDAK2 (ORCPT ); Mon, 3 Aug 2015 20:10:28 -0400 Received: from mga11.intel.com ([192.55.52.93]:19247 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751843AbbHDAK2 (ORCPT ); Mon, 3 Aug 2015 20:10:28 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 03 Aug 2015 17:10:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,605,1432623600"; d="scan'208";a="777131233" Received: from zhiquanl-mobl.ccr.corp.intel.com (HELO wfg-t540p.sh.intel.com) ([10.254.209.56]) by orsmga002.jf.intel.com with ESMTP; 03 Aug 2015 17:10:25 -0700 Received: from wfg by wfg-t540p.sh.intel.com with local (Exim 4.84) (envelope-from ) id 1ZMPnf-000601-OY; Tue, 04 Aug 2015 08:09:47 +0800 Date: Tue, 4 Aug 2015 08:09:47 +0800 From: kbuild test robot To: "linux-pm@vger.kernel.org" Cc: Tushar Dave , Zhang Rui , "Pandruvada, Srinivas" Subject: [PATCH] thermal: pch_dev_ops_wpt can be static Message-ID: <20150804000947.GA22892@wfg-t540p.sh.intel.com> References: <201508040110.6YvwEgCw%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <201508040110.6YvwEgCw%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.1 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 Signed-off-by: Fengguang Wu --- intel_pch_thermal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/thermal/intel_pch_thermal.c b/drivers/thermal/intel_pch_thermal.c index d9e07fd..a1393e1 100644 --- a/drivers/thermal/intel_pch_thermal.c +++ b/drivers/thermal/intel_pch_thermal.c @@ -137,7 +137,7 @@ struct pch_dev_ops { /* dev ops for Wildcat Point */ -struct pch_dev_ops pch_dev_ops_wpt = { +static struct pch_dev_ops pch_dev_ops_wpt = { .hw_init = pch_wpt_init, .get_temp = pch_wpt_get_temp, };