From patchwork Thu Oct 8 01:49:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tony Cho X-Patchwork-Id: 7348231 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 77DF6BEEA4 for ; Thu, 8 Oct 2015 01:49:43 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id B1DF72062F for ; Thu, 8 Oct 2015 01:49:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 45D2F205F1 for ; Thu, 8 Oct 2015 01:49:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752717AbbJHBtj (ORCPT ); Wed, 7 Oct 2015 21:49:39 -0400 Received: from eusmtp01.atmel.com ([212.144.249.242]:32538 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752223AbbJHBti (ORCPT ); Wed, 7 Oct 2015 21:49: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; Thu, 8 Oct 2015 03:49:31 +0200 From: Tony Cho To: CC: , , , , , , , , , , , Subject: [PATCH 01/14] staging: wilc1000: remove typedef from tstrWILC_UsrScanReq Date: Thu, 8 Oct 2015 10:49:08 +0900 Message-ID: <1444268961-7551-1-git-send-email-tony.cho@atmel.com> X-Mailer: git-send-email 1.9.1 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 tstrWILC_UsrScanReq with related comments and renames it to user_scan_req. Signed-off-by: Leo Kim Signed-off-by: Tony Cho --- drivers/staging/wilc1000/host_interface.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 2ca6a6e..0b3b4dc 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -225,7 +225,7 @@ struct hidden_network { u8 u8ssidnum; }; -typedef struct { +struct user_scan_req { /* Scan user call back function */ wilc_scan_result pfUserScanResult; @@ -234,7 +234,7 @@ typedef struct { u32 u32RcvdChCount; tstrFoundNetworkInfo astrFoundNetworkInfo[MAX_NUM_SCANNED_NETWORKS]; -} tstrWILC_UsrScanReq; +}; typedef struct { u8 *pu8bssid; @@ -304,8 +304,7 @@ enum p2p_listen_state { }; struct host_if_drv { - /* Scan user structure */ - tstrWILC_UsrScanReq strWILC_UsrScanReq; + struct user_scan_req strWILC_UsrScanReq; /* Connect User structure */ tstrWILC_UsrConnReq strWILC_UsrConnReq;