From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 62F7010A36 for ; Mon, 9 Oct 2023 15:23:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="yVVe3U5s" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 55786C433C7; Mon, 9 Oct 2023 15:23:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696865032; bh=ObvrkQNowN6D9lhZvrmX8Q8RKyFQ6TGkfKqLJZbpLMA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=yVVe3U5s4a6nvK4Cw7WftLl1t96uUaXLOc/CtJwGzyzOdTc80E2y/k9l5Jz+LIiEW VhjMe6aZrayIu2SH6tzH06ElK4Kb0Drsou4KmDvvWVqcm2Ndr0IdwS/Q2zp8AkBtZF RIhXV2nZBV3vlDdAqPF1I4SyysK5jr9pF/3eQ1+0= Date: Mon, 9 Oct 2023 17:23:50 +0200 From: Greg Kroah-Hartman To: Arnd Bergmann Cc: Jakub Kicinski , netdev@vger.kernel.org, linux-wireless@vger.kernel.org, Johannes Berg , linux-wpan@vger.kernel.org, Michael Hennerich , Paolo Abeni , Eric Dumazet , "David S . Miller" , linux-kernel@vger.kernel.org, Doug Brown , Arnd Bergmann Subject: Re: [PATCH 07/10] staging: rtl8723bs: remove dead code Message-ID: <2023100941-luminous-hula-7551@gregkh> References: <20231009141908.1767241-1-arnd@kernel.org> <20231009141908.1767241-7-arnd@kernel.org> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231009141908.1767241-7-arnd@kernel.org> On Mon, Oct 09, 2023 at 04:19:05PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The .ndo_do_ioctl functions are never called, so the three implementation here > is useless but only works as a way to identify the device in the notifiers, > which can really be removed as well. > > Looking through the exported functions, I found a bunch more that have > no callers, so just drop all of those. > > Signed-off-by: Arnd Bergmann Reviewed-by: Greg Kroah-Hartman