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 1198426299; Fri, 1 May 2026 14:23:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777645394; cv=none; b=VOWOteHCzrbJLYzem4G2bPQxQQul4ZLdXQcr7Z9m6golzP1ZvSimY2cK62QQAdt46HiunfE8mTKhmWDOYjSH98Hj6lrcXH6AP4nDTCoNcYI4xQ4wXnCHGRc1xrFHauQ/2+SEbIyB09RTrfyFzSFQskQ5eW53+RdEmndPa3g8fVQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1777645394; c=relaxed/simple; bh=Smd/rDia6/nukcgc5tyDQ3wBy/rH5UJM3WMmLWBD+mw=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=dGzHA4gJM5dcyEIWq296Ubf6ttV40I2k0Io5eYMH6W4sYb8ARo2YLv41aX3SK2yXfOSMXVXB3kKWlEscIvgGQpdQQbeiaS3FFvy1aCsKhdIO9SB7jL1oOfo4vpStsi0YManGzohTAp7qAVEtIhTISn80RmDs8aBv2qDrjd4u5Us= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Q9LKDR2d; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Q9LKDR2d" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5DD87C2BCB4; Fri, 1 May 2026 14:23:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1777645393; bh=Smd/rDia6/nukcgc5tyDQ3wBy/rH5UJM3WMmLWBD+mw=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Q9LKDR2d6gsBX6QqOOccZD17ZJx03+uWeiHgdbRhJkcC61conJFeWYqpV94GoYdCt JioZFWaK8TOoT9wt6WLi+ZsZzjDStVHYoOGEszwpdIqrEja5Nr+f/eY9PeRuEJbE0t fLMfCyw4E2dRTqI3M3MBqbBqiuy6ZJmYknjs1MKSz8lKbTGbt4qMz3VxzJV8H8189t +mW5tZEwBXsTUeTToIroir9gSzL45W4c/PXQcko0KJ0C5HPOQOoozOQolxskudlxZ+ ogtb5777WJFme6hMzB0v+SM1txVGhEOWMs8bfw58pQDX/uCuEgoFvuFFaQqv3uAb4+ bUSgdhpxvO+/w== Date: Fri, 1 May 2026 15:23:09 +0100 From: Simon Horman To: Arnd Bergmann Cc: Jonathan Corbet , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Arnd Bergmann , Shuah Khan , Andrew Morton , "Borislav Petkov (AMD)" , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH net-next 2/2] ne2k: fold drivers/net/Space.c into ne.c Message-ID: <20260501142309.GG15617@horms.kernel.org> References: <20260429145624.2948432-1-arnd@kernel.org> <20260429145624.2948432-2-arnd@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@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: <20260429145624.2948432-2-arnd@kernel.org> On Wed, Apr 29, 2026 at 04:55:46PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > drivers/net/Space.c is the last remnant of the linux-2.4.x driver model > that required each subsystem and device driver init function to be called > from init/main.c explicitly, before the introduction of initcall levels. > > In linux-7.0, this was only used for a handful of ISA network drivers, > with the ne2000 driver being the last one. > > Fold the code into ne.c directly, with minimal changes to preserve > the existing command line parsing. > > Signed-off-by: Arnd Bergmann Thanks Arnd, FTR, that there is an AI generated review of this patch available on sashkio.dev. I believe that covers only pre-existing issues. And I do not believe that review should block progress of this patch. Reviewed-by: Simon Horman ...