From patchwork Tue Mar 3 17:44:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Greg KH X-Patchwork-Id: 229967 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DFC28C3F2D8 for ; Tue, 3 Mar 2020 18:02:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B27EA208C3 for ; Tue, 3 Mar 2020 18:02:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583258577; bh=wtzmxt4IUQZwQeiPQbCPbGhcqVFoVsKHdba80U9RxoQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=FXry4YWcS92+zMIgO9QYv4gOz35pCEKzLEXY9HXAjS/crzB8D3m1iVJ3f8vUkUGXu SbbhJMjtGTx3ybrEX/2WcLb/v417WxiMIyqaqUC3tX32Vpw4J/Fig+A1WdBYjkfnoc 98XKdUt5gpHvFhrXIQtc/9w0BkIz78q09fhymyZI= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2387779AbgCCSCR (ORCPT ); Tue, 3 Mar 2020 13:02:17 -0500 Received: from mail.kernel.org ([198.145.29.99]:46810 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387746AbgCCSCQ (ORCPT ); Tue, 3 Mar 2020 13:02:16 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 49619206D5; Tue, 3 Mar 2020 18:02:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583258535; bh=wtzmxt4IUQZwQeiPQbCPbGhcqVFoVsKHdba80U9RxoQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=tJ9v/pq6NAUHsx+zsT6O7F9b21XinBBxZRR67Oi8kC/g1M4a0Z9HFwUwqeC1ZDrl4 WYaBbDkWL/c2qnDo/XkcjSwUszvpzmGNJkWmjybwQRIRiSAOX/7CrWO8WOHcJpNWw1 TFXgnpoNHxkr+wwmZ7aEPbRCxzOPkSXRbmVgqQbA= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Brian Norris , Kalle Valo Subject: [PATCH 4.19 69/87] mwifiex: delete unused mwifiex_get_intf_num() Date: Tue, 3 Mar 2020 18:44:00 +0100 Message-Id: <20200303174356.492876271@linuxfoundation.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200303174349.075101355@linuxfoundation.org> References: <20200303174349.075101355@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Brian Norris commit 1c9f329b084b7b8ea6d60d91a202e884cdcf6aae upstream. Commit 7afb94da3cd8 ("mwifiex: update set_mac_address logic") fixed the only user of this function, partly because the author seems to have noticed that, as written, it's on the borderline between highly misleading and buggy. Anyway, no sense in keeping dead code around: let's drop it. Fixes: 7afb94da3cd8 ("mwifiex: update set_mac_address logic") Signed-off-by: Brian Norris Signed-off-by: Kalle Valo Signed-off-by: Greg Kroah-Hartman --- drivers/net/wireless/marvell/mwifiex/main.h | 13 ------------- 1 file changed, 13 deletions(-) --- a/drivers/net/wireless/marvell/mwifiex/main.h +++ b/drivers/net/wireless/marvell/mwifiex/main.h @@ -1294,19 +1294,6 @@ mwifiex_copy_rates(u8 *dest, u32 pos, u8 return pos; } -/* This function return interface number with the same bss_type. - */ -static inline u8 -mwifiex_get_intf_num(struct mwifiex_adapter *adapter, u8 bss_type) -{ - u8 i, num = 0; - - for (i = 0; i < adapter->priv_num; i++) - if (adapter->priv[i] && adapter->priv[i]->bss_type == bss_type) - num++; - return num; -} - /* * This function returns the correct private structure pointer based * upon the BSS type and BSS number.