From patchwork Mon Oct 12 21:21:23 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: kernel test robot X-Patchwork-Id: 7379501 X-Patchwork-Delegate: bhelgaas@google.com Return-Path: X-Original-To: patchwork-linux-pci@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 B00EA9F37F for ; Mon, 12 Oct 2015 21:22:53 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 04C0620938 for ; Mon, 12 Oct 2015 21:22:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1A5932092A for ; Mon, 12 Oct 2015 21:22:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752464AbbJLVWu (ORCPT ); Mon, 12 Oct 2015 17:22:50 -0400 Received: from mga14.intel.com ([192.55.52.115]:33433 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751658AbbJLVWu (ORCPT ); Mon, 12 Oct 2015 17:22:50 -0400 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP; 12 Oct 2015 14:22:25 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,675,1437462000"; d="scan'208";a="825078674" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by orsmga002.jf.intel.com with ESMTP; 12 Oct 2015 14:22:24 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1ZlkXq-000F5M-SU; Tue, 13 Oct 2015 05:22:10 +0800 Date: Tue, 13 Oct 2015 05:21:23 +0800 From: kbuild test robot To: Guenter Roeck Cc: kbuild-all@01.org, linux-pci@vger.kernel.org, Bjorn Helgaas , linux-kernel@vger.kernel.org, Guenter Roeck Subject: [RFC PATCH] PCI: pciehp: pciehp_queue_power_work() can be static Message-ID: <20151012212123.GA19544@athens> References: <201510130546.Iddntrqh%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1444677013-3836-1-git-send-email-linux@roeck-us.net> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, 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 Signed-off-by: Fengguang Wu --- pciehp_ctrl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/pci/hotplug/pciehp_ctrl.c b/drivers/pci/hotplug/pciehp_ctrl.c index ef96a1d..e27a9e2 100644 --- a/drivers/pci/hotplug/pciehp_ctrl.c +++ b/drivers/pci/hotplug/pciehp_ctrl.c @@ -204,7 +204,7 @@ static void pciehp_power_thread(struct work_struct *work) kfree(info); } -void pciehp_queue_power_work(struct slot *p_slot, int req) +static void pciehp_queue_power_work(struct slot *p_slot, int req) { struct power_work_info *info;