From patchwork Wed Dec 30 12:15:44 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7932941 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 1D937BEEE5 for ; Wed, 30 Dec 2015 12:16:58 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 41368202C8 for ; Wed, 30 Dec 2015 12:16:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 776472027D for ; Wed, 30 Dec 2015 12:16:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754735AbbL3MQ4 (ORCPT ); Wed, 30 Dec 2015 07:16:56 -0500 Received: from mail-pa0-f45.google.com ([209.85.220.45]:34193 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754742AbbL3MQv (ORCPT ); Wed, 30 Dec 2015 07:16:51 -0500 Received: by mail-pa0-f45.google.com with SMTP id uo6so116326542pac.1 for ; Wed, 30 Dec 2015 04:16:51 -0800 (PST) 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=FKIQiPzcPk+UEA9OGxd93JQuC4bnwaUrd3S0BJaZDo4=; b=G2CiYG9grIfkiMrKFXzFn9dKIq19AiCDt9eIPR5Gl2VJP77D3Dgor/36c30i0i2Mx4 5DpMcnol0q2AHevW3GKf/vi9bHjD4CwQRjDDXVADy82p4tQVmIMuKPGFgK1WbdflaVWi 8EFWtg8ZWkpA2kyYMDETTYXYxcTlRzP0VWeiYIG3aScnApc5RjXXf9UY6K6X9cDTmikp v8nGcMvIObbCqG8CNaT7e/przRX3nkzq2vAI69zxItQn0/XKK59yqji3KCikvJu9nEGF k+QqxtEQXus4w6jv3y3jAYlZjYJIZ37cJnt46BwOOdXzjostCWqyH+gpdDs8IXBuEADZ CC/Q== X-Received: by 10.66.118.135 with SMTP id km7mr93821090pab.159.1451477811234; Wed, 30 Dec 2015 04:16:51 -0800 (PST) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id cn1sm89737620pad.11.2015.12.30.04.16.48 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 30 Dec 2015 04:16:50 -0800 (PST) From: Chaehyun Lim To: gregkh@linuxfoundation.org Cc: johnny.kim@atmel.com, austin.shin@atmel.com, chris.park@atmel.com, tony.cho@atmel.com, glen.lee@atmel.com, leo.kim@atmel.com, linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, Chaehyun Lim Subject: [PATCH 20/20] staging: wilc1000: move static declaration of host_int_get_ipaddress Date: Wed, 30 Dec 2015 21:15:44 +0900 Message-Id: <1451477744-11975-20-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1451477744-11975-1-git-send-email-chaehyun.lim@gmail.com> References: <1451477744-11975-1-git-send-email-chaehyun.lim@gmail.com> 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.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham 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 This patch moves static function declaration to front part of host_interface.c file. Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/host_interface.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index c8b4b32..5a97a9d 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -263,6 +263,7 @@ static struct wilc_vif *join_req_vif; #define FLUSHED_BYTE_POS 79 static void *host_int_ParseJoinBssParam(tstrNetworkInfo *ptstrNetworkInfo); +static int host_int_get_ipaddress(struct wilc_vif *vif, u8 *ip_addr, u8 idx); /* The u8IfIdx starts from 0 to NUM_CONCURRENT_IFC -1, but 0 index used as * special purpose in wilc device, so we add 1 to the index to starts from 1. @@ -362,8 +363,6 @@ static s32 handle_set_operation_mode(struct wilc_vif *vif, return result; } -static int host_int_get_ipaddress(struct wilc_vif *vif, u8 *ip_addr, u8 idx); - static s32 handle_set_ip_address(struct wilc_vif *vif, u8 *ip_addr, u8 idx) { s32 result = 0;