From patchwork Tue Oct 27 23:19:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7505241 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 AECAF9F36A for ; Tue, 27 Oct 2015 23:19:43 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 3D6D120859 for ; Tue, 27 Oct 2015 23:19:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 73EE220855 for ; Tue, 27 Oct 2015 23:19:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751885AbbJ0XTi (ORCPT ); Tue, 27 Oct 2015 19:19:38 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:34706 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751147AbbJ0XTh (ORCPT ); Tue, 27 Oct 2015 19:19:37 -0400 Received: by padhk11 with SMTP id hk11so236249200pad.1 for ; Tue, 27 Oct 2015 16:19:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=T5wlDl8XWruom7hNa5H/OklTSAULqgrzdJ3XFM5+qh0=; b=d1hf6orbHi4UOwOOEA7/DYwiTtH0tJkjPHECdbBVLg4Gw6bnbfsiGbzytB7mM+NFcp 9AtFqCYuce5dCu3OaSvJzsWIckm/ntYIo2xt2+TwnDi06HyhX6T1JShD7Rd+QWrRDImI O+Ihf8jTkcu58ZjxlfkJ3xkf2Hgtv9869sUALt7Mgn2vgNY2S85gwM1rEaG2pafepO8W /aPoSCeK5PJdMZU7K3o8WG4ipX3W8G34OlhtA1TIf1E+YI0nmopVuUBcjrWpqx+yHsTE RPjwM0j2bRJCZvq+pCtlGzmY4Nok8ya59n897Yc95mvRkv3mkpXSSamhvEXYDT1BvVXF E+7g== X-Received: by 10.68.196.231 with SMTP id ip7mr30708788pbc.83.1445987977386; Tue, 27 Oct 2015 16:19:37 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id ja4sm41602431pbb.19.2015.10.27.16.19.34 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 27 Oct 2015 16:19:36 -0700 (PDT) From: Chaehyun Lim To: gregkh@linuxfoundation.org Cc: johnny.kim@atmel.com, rachel.kim@atmel.com, chris.park@atmel.com, tony.cho@atmel.com, glen.lee@atmel.com, leo.kim@atmel.com, linux-wireless@vger.kernel.org, devel@driverdev.osuosl.org, Chaehyun Lim Subject: [PATCH 01/10] staging: wilc1000: fix return type of host_int_add_wep_key_bss_ap Date: Wed, 28 Oct 2015 08:19:19 +0900 Message-Id: <1445987968-18974-1-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.1 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.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham 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 changes return type of host_int_add_wep_key_bss_ap from s32 to int. The result variable gets return value from wilc_mq_send that has return type of int. It should be changed return type of this function as well as data type of result variable. Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/host_interface.c | 4 ++-- drivers/staging/wilc1000/host_interface.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 5a23738..e0a4cf3 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -3191,14 +3191,14 @@ int host_int_add_wep_key_bss_sta(struct host_if_drv *hif_drv, return result; } -s32 host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv, +int host_int_add_wep_key_bss_ap(struct host_if_drv *hif_drv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type) { - s32 result = 0; + int result = 0; struct host_if_msg msg; u8 i; diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index a9f7d1d..cd6199b 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -421,7 +421,7 @@ int host_int_add_wep_key_bss_sta(struct host_if_drv *hif_drv, * @date 28 Feb 2013 * @version 1.0 */ -s32 host_int_add_wep_key_bss_ap(struct host_if_drv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type); +int host_int_add_wep_key_bss_ap(struct host_if_drv *hWFIDrv, const u8 *pu8WepKey, u8 u8WepKeylen, u8 u8Keyidx, u8 u8mode, enum AUTHTYPE tenuAuth_type); /** * @brief adds ptk Key