From patchwork Mon Sep 21 03:16:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7227371 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 59AD69F40A for ; Mon, 21 Sep 2015 03:19:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9336220A2E for ; Mon, 21 Sep 2015 03:19:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B357F20A29 for ; Mon, 21 Sep 2015 03:19:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756006AbbIUDTj (ORCPT ); Sun, 20 Sep 2015 23:19:39 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:21359 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756001AbbIUDTi (ORCPT ); Sun, 20 Sep 2015 23:19:38 -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; Mon, 21 Sep 2015 05:19:36 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH v2 20/34] staging: wilc1000: remove typedef from the struct tstrHostIfStaInactiveT Date: Mon, 21 Sep 2015 12:16:49 +0900 Message-ID: <1442805423-3711-21-git-send-email-tony.cho@atmel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1442805423-3711-1-git-send-email-tony.cho@atmel.com> References: <1442805423-3711-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 tstrHostIfStaInactiveT and renames it to sta_inactive_t in oder to comply with the Linux coding style. Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index d95bba5..ee550c5 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -391,7 +391,7 @@ typedef struct { } tstrHostIFSetIPAddr; /*! - * @struct tstrHostIfStaInactiveT + * @struct sta_inactive_t * @brief Get station message body * @details * @todo @@ -400,10 +400,9 @@ typedef struct { * @date 16 April 2013 * @version 1.0 */ -typedef struct { +struct sta_inactive_t { u8 mac[6]; - -} tstrHostIfStaInactiveT; +}; /**/ /*! * @union message_body @@ -432,7 +431,7 @@ union message_body { /* tstrScanComplete strScanComplete; / *Received Async. Scan Complete message body* / */ struct timer_cb strTimerCb; /*!< Timer callback message body */ struct power_mgmt_param strPowerMgmtparam; /*!< Power Management message body */ - tstrHostIfStaInactiveT strHostIfStaInactiveT; + struct sta_inactive_t strHostIfStaInactiveT; tstrHostIFSetIPAddr strHostIfSetIP; tstrHostIfSetDrvHandler strHostIfSetDrvHandler; tstrHostIFSetMulti strHostIfSetMulti; @@ -3376,7 +3375,8 @@ s32 Handle_GetStatistics(tstrWILC_WFIDrv *drvHandler, tstrStatistics *pstrStatis * @date * @version 1.0 */ -static s32 Handle_Get_InActiveTime(tstrWILC_WFIDrv *drvHandler, tstrHostIfStaInactiveT *strHostIfStaInactiveT) +static s32 Handle_Get_InActiveTime(tstrWILC_WFIDrv *drvHandler, + struct sta_inactive_t *strHostIfStaInactiveT) { s32 s32Error = 0;