From patchwork Fri Sep 18 09:11:36 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7214591 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 AA66EBEEC1 for ; Fri, 18 Sep 2015 09:15:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id C694B201FE for ; Fri, 18 Sep 2015 09:15:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D3901207A4 for ; Fri, 18 Sep 2015 09:15:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753358AbbIRJPj (ORCPT ); Fri, 18 Sep 2015 05:15:39 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:46074 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752188AbbIRJPf (ORCPT ); Fri, 18 Sep 2015 05:15:35 -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:15:28 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 34/34] staging: wilc1000: delete unnecessary comments and dead code Date: Fri, 18 Sep 2015 18:11:36 +0900 Message-ID: <1442567496-29331-34-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 The comments in union message_body are not essential and cross 80 ending line, so they are deleted and also a dead code commented out in the union is deleted. Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.c | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index c87bf13..50cd649 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -413,22 +413,21 @@ struct sta_inactive_t { * @version 1.0 */ union message_body { - struct scan_attr strHostIFscanAttr; /*!< Host IF Scan Request Attributes message body */ - struct connect_attr strHostIFconnectAttr; /*!< Host IF Connect Request Attributes message body */ - struct rcvd_net_info strRcvdNetworkInfo; /*!< Received Asynchronous Network Info message body */ - struct rcvd_async_info strRcvdGnrlAsyncInfo; /*!< Received General Asynchronous Info message body */ - struct key_attr strHostIFkeyAttr; /*!<>*/ - struct cfg_param_attr strHostIFCfgParamAttr; /*! */ + struct scan_attr strHostIFscanAttr; + struct connect_attr strHostIFconnectAttr; + struct rcvd_net_info strRcvdNetworkInfo; + struct rcvd_async_info strRcvdGnrlAsyncInfo; + struct key_attr strHostIFkeyAttr; + struct cfg_param_attr strHostIFCfgParamAttr; struct set_channel strHostIFSetChan; struct get_channel strHostIFGetChan; - struct set_beacon strHostIFSetBeacon; /*!< Set beacon message body */ - struct del_beacon strHostIFDelBeacon; /*!< Del beacon message body */ - struct add_sta_param strAddStaParam; /*!< Add station message body */ - struct del_sta strDelStaParam; /*!< Del Station message body */ - struct add_sta_param strEditStaParam; /*!< Edit station 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 */ + struct set_beacon strHostIFSetBeacon; + struct del_beacon strHostIFDelBeacon; + struct add_sta_param strAddStaParam; + struct del_sta strDelStaParam; + struct add_sta_param strEditStaParam; + struct timer_cb strTimerCb; + struct power_mgmt_param strPowerMgmtparam; struct sta_inactive_t strHostIfStaInactiveT; struct set_ip_addr strHostIfSetIP; struct drv_handler strHostIfSetDrvHandler;