From patchwork Thu Oct 15 06:21:32 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: 7402201 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@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 212CEBEEA4 for ; Thu, 15 Oct 2015 06:23:14 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 5CE4D209EA for ; Thu, 15 Oct 2015 06:23:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7A272209E7 for ; Thu, 15 Oct 2015 06:23:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754568AbbJOGXK (ORCPT ); Thu, 15 Oct 2015 02:23:10 -0400 Received: from mga14.intel.com ([192.55.52.115]:62104 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754518AbbJOGXJ (ORCPT ); Thu, 15 Oct 2015 02:23:09 -0400 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP; 14 Oct 2015 23:22:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,684,1437462000"; d="scan'208";a="811440931" Received: from bee.sh.intel.com (HELO bee) ([10.239.97.14]) by fmsmga001.fm.intel.com with ESMTP; 14 Oct 2015 23:22:51 -0700 Received: from kbuild by bee with local (Exim 4.83) (envelope-from ) id 1Zmbvw-000Mdi-Fy; Thu, 15 Oct 2015 14:22:36 +0800 Date: Thu, 15 Oct 2015 14:21:32 +0800 From: kbuild test robot To: Tony Cho Cc: kbuild-all@01.org, gregkh@linuxfoundation.org, devel@driverdev.osuosl.org, linux-wireless@vger.kernel.org, johnny.kim@atmel.com, chris.park@atmel.com, rachel.kim@atmel.com, tony.cho@atmel.com, glen.lee@atmel.com, leo.kim@atmel.com, austin.shin@atmel.com, adel.noureldin@atmel.com, adham.abozaeid@atmel.com, Nicolas.FERRE@atmel.com Subject: [RFC PATCH] staging: wilc1000: hif_sema_deinit can be static Message-ID: <20151015062132.GA90448@xian> References: <201510151431.u3oU2Yok%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <1444883121-31757-16-git-send-email-tony.cho@atmel.com> 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-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@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 --- host_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" 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/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index acb8379d..aa5c9d7 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -244,7 +244,7 @@ static WILC_MsgQueueHandle hif_msg_q; static struct semaphore hif_sema_thread; struct semaphore hif_sema_driver; static struct semaphore hif_sema_wait_response; -struct semaphore hif_sema_deinit; +static struct semaphore hif_sema_deinit; struct timer_list g_hPeriodicRSSI;