Return-path: Received: from eusmtp01.atmel.com ([212.144.249.242]:34631 "EHLO eusmtp01.atmel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753660AbbJPJYS (ORCPT ); Fri, 16 Oct 2015 05:24:18 -0400 From: Tony Cho To: CC: , , , , , , , , Subject: [PATCH 10/13] staging: wilc1000: del_key: use netdev private wilc instead of wl Date: Fri, 16 Oct 2015 18:23:06 +0900 Message-ID: <1444987389-14151-10-git-send-email-tony.cho@atmel.com> (sfid-20151016_112426_338993_852BD4E5) In-Reply-To: <1444987389-14151-1-git-send-email-tony.cho@atmel.com> References: <1444987389-14151-1-git-send-email-tony.cho@atmel.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-wireless-owner@vger.kernel.org List-ID: From: Glen Lee Use netdev private data member wilc instead of global variable wl Signed-off-by: Glen Lee Signed-off-by: Tony Cho --- drivers/staging/wilc1000/wilc_wfi_cfgoperations.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c index f96f5b8..7599457 100644 --- a/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c +++ b/drivers/staging/wilc1000/wilc_wfi_cfgoperations.c @@ -1359,8 +1359,12 @@ static int del_key(struct wiphy *wiphy, struct net_device *netdev, const u8 *mac_addr) { struct wilc_priv *priv; + struct wilc *wl; + perInterface_wlan_t *nic; priv = wiphy_priv(wiphy); + nic = netdev_priv(netdev); + wl = nic->wilc; /*delete saved keys, if any*/ if (netdev == wl->vif[0].ndev) { -- 1.9.1