From patchwork Fri Sep 18 09:11:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7214331 X-Patchwork-Delegate: kvalo@adurom.com Return-Path: X-Original-To: patchwork-linux-wireless@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 19BEB9F380 for ; Fri, 18 Sep 2015 09:12:43 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3A097207A4 for ; Fri, 18 Sep 2015 09:12:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 329AF207A0 for ; Fri, 18 Sep 2015 09:12:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753043AbbIRJMi (ORCPT ); Fri, 18 Sep 2015 05:12:38 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:45093 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753126AbbIRJMg (ORCPT ); Fri, 18 Sep 2015 05:12:36 -0400 Received: from tony-itx.corp.atmel.com (10.161.101.13) by eusmtp01.atmel.com (10.161.101.30) with Microsoft SMTP Server id 14.3.235.1; Fri, 18 Sep 2015 11:12:29 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 07/34] staging: wilc1000: remove typedef from the struct tstrHostIFscanAttr Date: Fri, 18 Sep 2015 18:11:09 +0900 Message-ID: <1442567496-29331-7-git-send-email-tony.cho@atmel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1442567496-29331-1-git-send-email-tony.cho@atmel.com> References: <1442567496-29331-1-git-send-email-tony.cho@atmel.com> MIME-Version: 1.0 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 This patch removes typedef from the structure tstrHostIFscanAttr and changes the camelcase name, tstrHostIFscanAttr to scan_attr in order to comply with the Linux coding style. Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 8b1aa2f..4a02e10 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -155,7 +155,7 @@ typedef struct _tstrHostIFkeyAttr { /*! - * @struct tstrHostIFscanAttr + * @struct scan_attr * @brief Structure to hold Host IF Scan Attributes * @details * @todo @@ -164,7 +164,7 @@ typedef struct _tstrHostIFkeyAttr { * @date 25 March 2012 * @version 1.0 */ -typedef struct _tstrHostIFscanAttr { +struct scan_attr { u8 u8ScanSource; u8 u8ScanType; u8 *pu8ChnlFreqList; @@ -175,8 +175,7 @@ typedef struct _tstrHostIFscanAttr { void *pvUserArg; /*BugID_4189*/ tstrHiddenNetwork strHiddenNetwork; - -} tstrHostIFscanAttr; +}; /*! * @struct tstrHostIFconnectAttr @@ -419,7 +418,7 @@ typedef struct { * @version 1.0 */ union message_body { - tstrHostIFscanAttr strHostIFscanAttr; /*!< Host IF Scan Request Attributes message body */ + struct scan_attr strHostIFscanAttr; /*!< Host IF Scan Request Attributes message body */ tstrHostIFconnectAttr strHostIFconnectAttr; /*!< Host IF Connect Request Attributes message body */ tstrRcvdNetworkInfo strRcvdNetworkInfo; /*!< Received Asynchronous Network Info message body */ tstrRcvdGnrlAsyncInfo strRcvdGnrlAsyncInfo; /*!< Received General Asynchronous Info message body */ @@ -1285,13 +1284,14 @@ static s32 Handle_wait_msg_q_empty(void) /** * @brief Handle_Scan * @details Sending config packet to firmware to set the scan params - * @param[in] tstrHostIFscanAttr* pstrHostIFscanAttr + * @param[in] struct scan_attr *pstrHostIFscanAttr * @return Error code. * @author * @date * @version 1.0 */ -static s32 Handle_Scan(tstrWILC_WFIDrv *drvHandler, tstrHostIFscanAttr *pstrHostIFscanAttr) +static s32 Handle_Scan(tstrWILC_WFIDrv *drvHandler, + struct scan_attr *pstrHostIFscanAttr) { s32 s32Error = 0; tstrWID strWIDList[5];