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 7C8F7E95A91 for ; Mon, 9 Oct 2023 15:24:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1377044AbjJIPY1 (ORCPT ); Mon, 9 Oct 2023 11:24:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33426 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1377028AbjJIPY0 (ORCPT ); Mon, 9 Oct 2023 11:24:26 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D9A73111; Mon, 9 Oct 2023 08:24:21 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D1506C433C7; Mon, 9 Oct 2023 15:24:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1696865061; bh=zuaUKR5hhGmNwxo4/WYo0MDrdfEbXYhaQqjlY5wORiM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ijsFJQuH3aqI/SBO5lAJCxZJVFXUWWC8FEhcyW6rTBoE3ZX6YlRNxaDUZpAeSOhY8 E9HQvD7XLMGiHkRAixo5FoiPKrcQ+Q+DQHgHwHzZBOXceiQAvozpuQvIf1zymxNsuK iltc+PaLqQoeKlBHp8/KG8e06LmJJkQ6fv3N4MFo= Date: Mon, 9 Oct 2023 17:24:18 +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 04/10] staging: ks7010: remove unused ioctl handler Message-ID: <2023100913-various-doodle-cfd0@gregkh> References: <20231009141908.1767241-1-arnd@kernel.org> <20231009141908.1767241-4-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231009141908.1767241-4-arnd@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org On Mon, Oct 09, 2023 at 04:19:02PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > The ndo_do_ioctl function has no actual callers, and doesn't do much here, > so just remove it entirely as preparation for removing the callback pointer > from net_device_ops. > > Signed-off-by: Arnd Bergmann Reviewed-by: Greg Kroah-Hartman