From patchwork Thu Oct 29 12:29:28 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chaehyun Lim X-Patchwork-Id: 7518781 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 7E0C39F37F for ; Thu, 29 Oct 2015 12:30:24 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id AFFC22072B for ; Thu, 29 Oct 2015 12:30:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BA13C2070D for ; Thu, 29 Oct 2015 12:30:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756903AbbJ2MaT (ORCPT ); Thu, 29 Oct 2015 08:30:19 -0400 Received: from mail-pa0-f52.google.com ([209.85.220.52]:34111 "EHLO mail-pa0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751474AbbJ2MaR (ORCPT ); Thu, 29 Oct 2015 08:30:17 -0400 Received: by padhk11 with SMTP id hk11so40063807pad.1 for ; Thu, 29 Oct 2015 05:30:16 -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=tJs6Qs7bHwfNSomyF2kPRZkhZ6R71zZsOayP6aX3qZQ=; b=C/nn9WdY7baUwhGRX6jZCYffXJrFxL8kCZdQWx6mVAY8By5kJUfzMTzDlau1w09LkB qhfoJo3xaffWsdGgUIIcdDjONgM0xswMe35oG9TTijq6xuOPniNcHUCULUirYb89yptu ZU2yRg5B0TUAOGeTY4kTII5vVE3cp6hNtX8gHzn4tfqbB7YqdtiROM5b1sBzYLwt4Nx3 w44Bu3er2SfTvB/64ELHHGAAjGuXoWrlJVJ+JrT9jiy2IShkOMJsgZC1UUYIAAWmtVuV +BPSnjJ/KIqMdO+jHfD98ztBk56GEX6Rd1ylmbJ0fiWOlHGDXmfiTIHv7Fcrp5GYMIym VGpg== X-Received: by 10.68.131.36 with SMTP id oj4mr1632160pbb.141.1446121816801; Thu, 29 Oct 2015 05:30:16 -0700 (PDT) Received: from localhost.localdomain ([218.233.16.2]) by smtp.gmail.com with ESMTPSA id ir4sm2139226pbb.93.2015.10.29.05.30.13 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 29 Oct 2015 05:30:16 -0700 (PDT) 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 12/12] staging: wilc1000: remove rates in host_int_add_station Date: Thu, 29 Oct 2015 21:29:28 +0900 Message-Id: <1446121768-4953-12-git-send-email-chaehyun.lim@gmail.com> X-Mailer: git-send-email 2.6.1 In-Reply-To: <1446121768-4953-1-git-send-email-chaehyun.lim@gmail.com> References: <1446121768-4953-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->pu8Rates directly. Signed-off-by: Chaehyun Lim --- drivers/staging/wilc1000/host_interface.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/staging/wilc1000/host_interface.c b/drivers/staging/wilc1000/host_interface.c index 6b804e6..e2bdac8 100644 --- a/drivers/staging/wilc1000/host_interface.c +++ b/drivers/staging/wilc1000/host_interface.c @@ -4537,13 +4537,11 @@ int host_int_add_station(struct host_if_drv *hif_drv, memcpy(add_sta_info, sta_param, sizeof(struct add_sta_param)); if (add_sta_info->u8NumRates > 0) { - u8 *rates = kmemdup(sta_param->pu8Rates, - add_sta_info->u8NumRates, - GFP_KERNEL); - if (!rates) + add_sta_info->pu8Rates = kmemdup(sta_param->pu8Rates, + add_sta_info->u8NumRates, + GFP_KERNEL); + if (!add_sta_info->pu8Rates) return -ENOMEM; - - add_sta_info->pu8Rates = rates; } result = wilc_mq_send(&hif_msg_q, &msg, sizeof(struct host_if_msg));