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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 70424E95A91 for ; Mon, 9 Oct 2023 15:24:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1376940AbjJIPYS (ORCPT ); Mon, 9 Oct 2023 11:24:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33352 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1376771AbjJIPYR (ORCPT ); Mon, 9 Oct 2023 11:24:17 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5C002B6; Mon, 9 Oct 2023 08:24:14 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 638CEC433C8; Mon, 9 Oct 2023 15:24:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696865054; bh=Kaj3Z1tW1udqMMePJvXDVKy+9Nhy223eBQjA1Yw3D5s=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AxoGdX7zxlhxGhhl4Ah1dOAeE6EEl6CLB1lqKjtaOEU3JWTvuk9WNEfZLCVV2gZUv kWMswm4XyKMW4cVei9WtelWjjj5Rg72d/IBLSizDicH2x2QSVrYL9AguKfTBmL7oDG uWZmUpbPo6ICEE2NutNLqzGIFhjeJsxQSE8qvosM= Date: Mon, 9 Oct 2023 17:24:11 +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 05/10] staging: rtl8192: remove unused legacy ioctl handlers Message-ID: <2023100900-plunging-pajamas-2d7a@gregkh> References: <20231009141908.1767241-1-arnd@kernel.org> <20231009141908.1767241-5-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231009141908.1767241-5-arnd@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Mon, Oct 09, 2023 at 04:19:03PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The .ndo_do_ioctl functions are never called, and can just be removed, > especially since this is a staging driver. > > Signed-off-by: Arnd Bergmann > --- > drivers/staging/rtl8192u/ieee80211/dot11d.c | 41 -- > drivers/staging/rtl8192u/ieee80211/dot11d.h | 2 - > .../staging/rtl8192u/ieee80211/ieee80211.h | 12 - > .../rtl8192u/ieee80211/ieee80211_softmac.c | 563 ------------------ > drivers/staging/rtl8192u/r8192U.h | 2 - > drivers/staging/rtl8192u/r8192U_core.c | 109 ---- > 6 files changed, 729 deletions(-) Reviewed-by: Greg Kroah-Hartman