From patchwork Thu Oct 15 02:06:50 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7400241 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 D0CF79F302 for ; Thu, 15 Oct 2015 02:08:16 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0905D20832 for ; Thu, 15 Oct 2015 02:08:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7C0622083B for ; Thu, 15 Oct 2015 02:08:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932850AbbJOCIL (ORCPT ); Wed, 14 Oct 2015 22:08:11 -0400 Received: from mail-pa0-f49.google.com ([209.85.220.49]:35638 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932771AbbJOCII (ORCPT ); Wed, 14 Oct 2015 22:08:08 -0400 Received: by pacao1 with SMTP id ao1so6526849pac.2 for ; Wed, 14 Oct 2015 19:08:08 -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:in-reply-to:references; bh=/YtdtB2Kz2NWRXs+z4iOGHFExUfK1QDH/f4915riljE=; b=0bxZSBTZuhw54qHuATnFJPivwT01GRkq5rj/Wp+2/BPkyqndfWuTuevV6Y+mxdLe8j QMoRWVrNGw6CA27Bla/0qyJOLLIcg2F20OWb3I3ZD9yjrCPwmVUvQ8Rtow01c0+/dyiN lP7Gix5rhifldE+gPx9MDwiA3+kZrZtBzuUnf+vaGsh9W3H0KYu0IzYk3nJXGqcEmVk7 xF/pgnqt9F16lNqAvMccrSVVuqgIMis3ZS8oTVW113GUm5QE8PmP28ghkUI+CGhWeECd HL8VPp4a7Uqn3TNAcfrcUTUqQdcE8RqWiGy6DqCPk+qBAy2+yKmcu16Kv+WCF67FGV2K p7DA== X-Received: by 10.68.68.197 with SMTP id y5mr7095414pbt.88.1444874888405; Wed, 14 Oct 2015 19:08:08 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id nv2sm11997253pbc.48.2015.10.14.19.08.05 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 14 Oct 2015 19:08:08 -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, Chaehyun Lim Subject: [PATCH 21/33] staging: wilc1000: fix return type of host_int_setup_ipaddress Date: Thu, 15 Oct 2015 11:06:50 +0900 Message-Id: <1444874822-31152-21-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1444874822-31152-1-git-send-email-chaehyun.lim@gmail.com> References: <1444874822-31152-1-git-send-email-chaehyun.lim@gmail.com> 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, T_DKIM_INVALID, T_RP_MATCHES_RCVD, 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_setup_ipaddress from s32 to int. s32Error 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 s32Error. 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 f299cf7..90fe5479 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -5135,9 +5135,9 @@ s32 host_int_del_All_Rx_BASession(struct host_if_drv *hif_drv, return s32Error; } -s32 host_int_setup_ipaddress(struct host_if_drv *hif_drv, u8 *u16ipadd, u8 idx) +int host_int_setup_ipaddress(struct host_if_drv *hif_drv, u8 *u16ipadd, u8 idx) { - s32 s32Error = 0; + int s32Error = 0; struct host_if_msg msg; return 0; diff --git a/drivers/staging/wilc1000/host_interface.h b/drivers/staging/wilc1000/host_interface.h index 45c589f..7719f06 100644 --- a/drivers/staging/wilc1000/host_interface.h +++ b/drivers/staging/wilc1000/host_interface.h @@ -1068,7 +1068,7 @@ s32 host_int_setup_multicast_filter(struct host_if_drv *hWFIDrv, bool bIsEnabled * @date * @version 1.0 */ -s32 host_int_setup_ipaddress(struct host_if_drv *hWFIDrv, u8 *pu8IPAddr, u8 idx); +int host_int_setup_ipaddress(struct host_if_drv *hWFIDrv, u8 *pu8IPAddr, u8 idx); /**