From patchwork Wed Dec 30 12:15:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7932891 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 10177BEEE5 for ; Wed, 30 Dec 2015 12:16:48 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 411A2202C8 for ; Wed, 30 Dec 2015 12:16:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 699C42027D for ; Wed, 30 Dec 2015 12:16:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754734AbbL3MQo (ORCPT ); Wed, 30 Dec 2015 07:16:44 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:33670 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754525AbbL3MQm (ORCPT ); Wed, 30 Dec 2015 07:16:42 -0500 Received: by mail-pa0-f48.google.com with SMTP id cy9so138011760pac.0 for ; Wed, 30 Dec 2015 04:16:41 -0800 (PST) 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=kj0pBnko4aebbvyrQY7pdxdNLNoIwzaQA9MNWxNm5fI=; b=I1e7tkXorZII0h0Kv97MRzSphjOoLyD+EHZpVULK+k8oRC+P/0rFumdz2KoVNTOrZ2 deZBm1lyhytPAGXWl4c2J3GC2t6f89bgYCZgDo3JS+HuPDG9csZ6yF6XBL040b2dgopJ NjyXSF8wuBOj//Tg2YSm070PoQesGjeYuHyfUlXpWvZj2sq9yXIsxQqn8j7VbSn6LbG0 Ztu0wR/hL/xGSU4VW53/Ysg9fQfYepqap4GuNOgjlsRgKMab9roDRgvTBSgKuXuk/OVQ 2rw1fS3V+cu4o++tRQ9NLkQsY9Bf0Rm9QfaMKhSrkachh7TSgIZhfHqtsqlLPcrxbrlH EaJg== X-Received: by 10.67.5.2 with SMTP id ci2mr92947974pad.47.1451477801775; Wed, 30 Dec 2015 04:16:41 -0800 (PST) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id cn1sm89737620pad.11.2015.12.30.04.16.38 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 30 Dec 2015 04:16:41 -0800 (PST) From: Chaehyun Lim To: gregkh@linuxfoundation.org Cc: johnny.kim@atmel.com, austin.shin@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 17/20] staging: wilc1000: fix return type of host_int_get_ipaddress Date: Wed, 30 Dec 2015 21:15:41 +0900 Message-Id: <1451477744-11975-17-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1451477744-11975-1-git-send-email-chaehyun.lim@gmail.com> References: <1451477744-11975-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, 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_get_ipaddress from s32 to int. The result variable gets return value from wilc_mq_send that has data 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 90fdbdd..a203647 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -362,7 +362,7 @@ static s32 handle_set_operation_mode(struct wilc_vif *vif, return result; } -static s32 host_int_get_ipaddress(struct wilc_vif *vif, +static int host_int_get_ipaddress(struct wilc_vif *vif, struct host_if_drv *hif_drv, u8 *u16ipadd, u8 idx); @@ -4664,11 +4664,11 @@ int wilc_setup_ipaddress(struct wilc_vif *vif, u8 *ip_addr, u8 idx) return result; } -static s32 host_int_get_ipaddress(struct wilc_vif *vif, +static int host_int_get_ipaddress(struct wilc_vif *vif, struct host_if_drv *hif_drv, u8 *u16ipadd, u8 idx) { - s32 result = 0; + int result = 0; struct host_if_msg msg; if (!hif_drv) {