From patchwork Fri Sep 18 09:11:15 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7214391 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 C8745BEEC1 for ; Fri, 18 Sep 2015 09:13:21 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id EF3BA207A4 for ; Fri, 18 Sep 2015 09:13:19 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0EA09207A0 for ; Fri, 18 Sep 2015 09:13:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753217AbbIRJNQ (ORCPT ); Fri, 18 Sep 2015 05:13:16 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:45283 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752233AbbIRJNP (ORCPT ); Fri, 18 Sep 2015 05:13:15 -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:13:08 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 13/34] staging: wilc1000: remove typedef from the struct tstrHostIFSetChan Date: Fri, 18 Sep 2015 18:11:15 +0900 Message-ID: <1442567496-29331-13-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 struct tstrHostIFSetChan and ranames it to set_channel in order to comply with the Linux coding style. Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index d863a8c..2f86a3b 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -216,7 +216,7 @@ struct rcvd_async_info { }; /*! - * @struct tstrHostIFSetChan + * @struct set_channel * @brief Set Channel message body * @details * @todo @@ -225,9 +225,9 @@ struct rcvd_async_info { * @date 25 March 2012 * @version 1.0 */ -typedef struct _tstrHostIFSetChan { +struct set_channel { u8 u8SetChan; -} tstrHostIFSetChan; +}; /*! * @struct tstrHostIFSetChan @@ -423,7 +423,7 @@ union message_body { struct rcvd_async_info strRcvdGnrlAsyncInfo; /*!< Received General Asynchronous Info message body */ struct key_attr strHostIFkeyAttr; /*!<>*/ struct cfg_param_attr strHostIFCfgParamAttr; /*! */ - tstrHostIFSetChan strHostIFSetChan; + struct set_channel strHostIFSetChan; tstrHostIFGetChan strHostIFGetChan; tstrHostIFSetBeacon strHostIFSetBeacon; /*!< Set beacon message body */ tstrHostIFDelBeacon strHostIFDelBeacon; /*!< Del beacon message body */ @@ -635,13 +635,14 @@ static tstrWILC_WFIDrv *get_handler_from_id(int id) /** * @brief Handle_SetChannel * @details Sending config packet to firmware to set channel - * @param[in] tstrHostIFSetChan* pstrHostIFSetChan + * @param[in] struct set_channel *pstrHostIFSetChan * @return Error code. * @author * @date * @version 1.0 */ -static s32 Handle_SetChannel(tstrWILC_WFIDrv *drvHandler, tstrHostIFSetChan *pstrHostIFSetChan) +static s32 Handle_SetChannel(tstrWILC_WFIDrv *drvHandler, + struct set_channel *pstrHostIFSetChan) { s32 s32Error = 0;