From patchwork Fri Sep 18 09:11:07 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7214311 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 8114EBEEC1 for ; Fri, 18 Sep 2015 09:12:29 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 25A69207A4 for ; Fri, 18 Sep 2015 09:12:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 47E43207A0 for ; Fri, 18 Sep 2015 09:12:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751786AbbIRJMX (ORCPT ); Fri, 18 Sep 2015 05:12:23 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:45022 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753060AbbIRJMV (ORCPT ); Fri, 18 Sep 2015 05:12:21 -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:14 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 05/34] staging: wilc1000 remove typedef from the union Date: Fri, 18 Sep 2015 18:11:07 +0900 Message-ID: <1442567496-29331-5-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 gets rid of typedef from the union and renames tuniHostIFmsgBody with simply message_body because the Linux coding style does not recommend camelcase notation and typedef for structure, enmu and also union. Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index d215b12..6cb35aa 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -409,7 +409,7 @@ typedef struct { } tstrHostIfStaInactiveT; /**/ /*! - * @union tuniHostIFmsgBody + * @union message_body * @brief Message body for the Host Interface message_q * @details * @todo @@ -418,7 +418,7 @@ typedef struct { * @date 25 March 2012 * @version 1.0 */ -typedef union _tuniHostIFmsgBody { +union message_body { tstrHostIFscanAttr 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 */ @@ -447,7 +447,7 @@ typedef union _tuniHostIFmsgBody { tstrHostIfRegisterFrame strHostIfRegisterFrame; char *pUserData; tstrHostIFDelAllSta strHostIFDelAllSta; -} tuniHostIFmsgBody; +}; /*! * @struct struct host_if_msg @@ -461,7 +461,7 @@ typedef union _tuniHostIFmsgBody { */ struct host_if_msg { u16 id; /*!< Message ID */ - tuniHostIFmsgBody uniHostIFmsgBody; /*!< Message body */ + union message_body uniHostIFmsgBody; /*!< Message body */ tstrWILC_WFIDrv *drvHandler; };