From patchwork Sun Jan 3 08:35:48 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7943141 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 CEB7ABEEE5 for ; Sun, 3 Jan 2016 08:37:08 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1178E203AC for ; Sun, 3 Jan 2016 08:37:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4A867203A5 for ; Sun, 3 Jan 2016 08:37:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751427AbcACIhG (ORCPT ); Sun, 3 Jan 2016 03:37:06 -0500 Received: from mail-pa0-f44.google.com ([209.85.220.44]:32993 "EHLO mail-pa0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751301AbcACIhE (ORCPT ); Sun, 3 Jan 2016 03:37:04 -0500 Received: by mail-pa0-f44.google.com with SMTP id cy9so181764800pac.0 for ; Sun, 03 Jan 2016 00:37:03 -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=bpoosCoJ1AfvRM625Vo0ofqNtvYJM+GyBSMftNIE89g=; b=nWC2eNI/+nf3o0A5ZIP/G7HtvX3uQcG77FXTikaeOKnKvvzd5f3i6YLXHQ1AsTyGzg og4CeRqwIwb578N6RcWE1WxJLyOoTcIlxPARmw6uRw93slaivCxyjotOFbIo1uJamCKC 2aMm8TskuR+FjC/whNkPPwuOiWGaRfZM+bLl9FJ+swYCwlb8tM8A5Sxq7Vre/nZkVf+t /sCopbpVxWlG//Q1Xr4rFZM+2AXks3DWj8WGM/7MrL8K3UziUBdR64aNsLOVJKSIYtq2 UrbIi4VQSqfBsiQf1Hsk3Mixk7KVHp4GS4bZVk4PtQbXT8sD49QLUklpjUeOnb1Q/6mI VMRw== X-Received: by 10.67.24.104 with SMTP id ih8mr118668779pad.124.1451810223681; Sun, 03 Jan 2016 00:37:03 -0800 (PST) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id 6sm55443374pfm.46.2016.01.03.00.37.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 03 Jan 2016 00:37:03 -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 16/30] staging: wilc1000: remove rates variable in wilc_edit_station Date: Sun, 3 Jan 2016 17:35:48 +0900 Message-Id: <1451810162-16993-16-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.4 In-Reply-To: <1451810162-16993-1-git-send-email-chaehyun.lim@gmail.com> References: <1451810162-16993-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 Instead of using rates variable, it is used as add_sta_info->rates directly. Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/host_interface.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 290c27a..57d59dc 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -4372,12 +4372,11 @@ int wilc_edit_station(struct wilc_vif *vif, memcpy(add_sta_info, sta_param, sizeof(struct add_sta_param)); if (add_sta_info->rates_len > 0) { - u8 *rates = kmemdup(sta_param->rates, - add_sta_info->rates_len, - GFP_KERNEL); - if (!rates) + add_sta_info->rates = kmemdup(sta_param->rates, + add_sta_info->rates_len, + GFP_KERNEL); + if (!add_sta_info->rates) return -ENOMEM; - add_sta_info->rates = rates; } result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));