From patchwork Mon Oct 5 06:25:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7324771 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 C9B3C9F302 for ; Mon, 5 Oct 2015 06:26:51 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 10FEF20670 for ; Mon, 5 Oct 2015 06:26:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0CEAB20501 for ; Mon, 5 Oct 2015 06:26:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752049AbbJEG0s (ORCPT ); Mon, 5 Oct 2015 02:26:48 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:8728 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751684AbbJEG0s (ORCPT ); Mon, 5 Oct 2015 02:26:48 -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, 5 Oct 2015 08:26:46 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 07/18] staging: wilc1000: remove typedef from tstrHostIFwepAttr Date: Mon, 5 Oct 2015 15:25:42 +0900 Message-ID: <1444026353-29024-7-git-send-email-tony.cho@atmel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1444026353-29024-1-git-send-email-tony.cho@atmel.com> References: <1444026353-29024-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 From: Leo Kim This patch removes typedef from the struct tstrHostIFwepAttr. And rename it to host_if_wep_attr. Signed-off-by: Leo Kim Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index f4c5ec3..87866c4 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -97,7 +97,7 @@ typedef struct _tstrHostIFwpaAttr { /*! - * @struct tstrHostIFwepAttr + * @struct host_if_wep_attr * @brief Structure to hold Host IF Scan Attributes * @details * @todo @@ -106,14 +106,13 @@ typedef struct _tstrHostIFwpaAttr { * @date 25 March 2012 * @version 1.0 */ -typedef struct _tstrHostIFwepAttr { +struct host_if_wep_attr { u8 *pu8WepKey; u8 u8WepKeylen; u8 u8Wepidx; u8 u8mode; enum AUTHTYPE tenuAuth_type; - -} tstrHostIFwepAttr; +}; /*! * @struct host_if_key_attr @@ -126,7 +125,7 @@ typedef struct _tstrHostIFwepAttr { * @version 1.0 */ union host_if_key_attr { - tstrHostIFwepAttr strHostIFwepAttr; + struct host_if_wep_attr strHostIFwepAttr; tstrHostIFwpaAttr strHostIFwpaAttr; tstrHostIFpmkidAttr strHostIFpmkidAttr; };