From patchwork Thu Oct 29 23:17: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: 7521981 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 46D4FBEEA4 for ; Thu, 29 Oct 2015 23:18:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 68CBE207DE for ; Thu, 29 Oct 2015 23:18:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 033B82085F for ; Thu, 29 Oct 2015 23:18:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757679AbbJ2XSm (ORCPT ); Thu, 29 Oct 2015 19:18:42 -0400 Received: from mail-pa0-f66.google.com ([209.85.220.66]:32990 "EHLO mail-pa0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757942AbbJ2XSQ (ORCPT ); Thu, 29 Oct 2015 19:18:16 -0400 Received: by padfb7 with SMTP id fb7so5896853pad.0 for ; Thu, 29 Oct 2015 16:18:16 -0700 (PDT) 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=6Q6nBliPin5+G9SWISqKo2JrfDnlQWEHl6dnshX1iFQ=; b=t4JlV6qlGmGzms7bNzvZ8J7DfoUTho7lGrk7ddQ/xm9B7bKCkkF2nLVOjiotim3YSy DrSqliHISpZDZ99Rct4ghL0DFtBQxiOcjii04fnVqZHiCe/JF+Dalfyi5tysJAUsg/1m EBg1FSsdkDQ0j+0A877sGaUEwLdV8Ggl8C33f+fFXOuAoRzc//PqnsSEIy0NLhTwJKFM Pq4tAIyTKihAfJXux0ibNvmx9GIJ3eMKK6OFQjm2Vd031PNTMKxJIs7LB6SgkHh+rxSg 4WsKXGOgju53UD3MLgHM5+qQqf93JXhMBCB96WDwwfWlh8x9XnLB8TcK8ikWzL/PVIe5 I9ag== X-Received: by 10.68.173.133 with SMTP id bk5mr4865207pbc.133.1446160696138; Thu, 29 Oct 2015 16:18:16 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id y7sm4292207par.31.2015.10.29.16.18.13 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 29 Oct 2015 16:18:15 -0700 (PDT) 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 V2 08/12] staging: wilc1000: fix parameter name of host_int_add_station Date: Fri, 30 Oct 2015 08:17:44 +0900 Message-Id: <1446160668-10747-8-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1446160668-10747-1-git-send-email-chaehyun.lim@gmail.com> References: <1446160668-10747-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 changes struct host_if_drv of host_int_add_station function declaration from hWFIDrv to hif_drv. With this change, first parameter name of this function declaration and definition has same name as hif_drv. Signed-off-by: Chaehyun Lim --- V2: resend because 11/12 patch is changed. drivers/staging/wilc1000/host_interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 3fcff7a..7c9c4c6 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -948,7 +948,7 @@ int host_int_del_beacon(struct host_if_drv *hif_drv); * @date 12 July 2012 * @version 1.0 Description */ -int host_int_add_station(struct host_if_drv *hWFIDrv, +int host_int_add_station(struct host_if_drv *hif_drv, struct add_sta_param *pstrStaParams); /*!