From mboxrd@z Thu Jan 1 00:00:00 1970 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=ham 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 DA56EC3F2D1 for ; Tue, 3 Mar 2020 17:51:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A4CF520CC7 for ; Tue, 3 Mar 2020 17:51:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583257892; bh=/Y61u/WDDMNO4YmtCJCU1qU7NppAVq+7vFBnmdojCLA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=Sf7eNO8zNBbl3GkvMEMOFt6daVwQnRMZM75St5OMVTlECu6WnmDKhqXG23shllXde tE0vM8ebdVjEe8+HugKfpkElu0UbH8N6P652aRC/MJ8zhJutvhGhn/poMCp6aPpkm7 s37AlaycS7LIWi9hV5YI8eP1UVIE5G3tAYYa66Z4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732000AbgCCRvb (ORCPT ); Tue, 3 Mar 2020 12:51:31 -0500 Received: from mail.kernel.org ([198.145.29.99]:59546 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731983AbgCCRv3 (ORCPT ); Tue, 3 Mar 2020 12:51:29 -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 74CBC20870; Tue, 3 Mar 2020 17:51:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583257888; bh=/Y61u/WDDMNO4YmtCJCU1qU7NppAVq+7vFBnmdojCLA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=gxKhiCROTmZOXqaoBFVScLue50EEcitvf4sa6kS4dnMoXYjMsJnc1Zh3n/i80P5cT 6lRbpNshAla0z+5UDsLkfBtbLaVmFWl2LA48/T0OqByEN/hgmo023pUKddzKulDik9 Ol2twl/LPEVFfnW3r3eGobf03DIapJ357SNVVl+E= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Brian Norris , Kalle Valo Subject: [PATCH 5.5 139/176] mwifiex: delete unused mwifiex_get_intf_num() Date: Tue, 3 Mar 2020 18:43:23 +0100 Message-Id: <20200303174320.856274073@linuxfoundation.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200303174304.593872177@linuxfoundation.org> References: <20200303174304.593872177@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@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 @@ -1295,19 +1295,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.