From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 1E5FD43C076; Thu, 9 Jul 2026 17:21:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783617710; cv=none; b=PFBaxSbyQpQmJwy1yWsgJXRKt5ppa8mOiy8lel8E6cnUQQsFJc0C06p/lx/TwkADe+tLgM8VHcG5OzUE2Kxgj+c9SXuyue1o78965RcSVcN6PwlnT5EFMV7qbBMrUuaUsr3m9bL6JulPuTWR7b5yX1CrxLkkoWedq3NdUbytA8Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783617710; c=relaxed/simple; bh=c5rCvUfv5qRx2UlHcco6fj2IzQZUFugwoC5z0NJdmKo=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=uJ0BC3yGzPQzCOylTHFLh1pXw2ejLuHztF5D5HJMxAa8NkuAT95KVSLM7vCl6Y6rHgQG01Wz1mqbsSi88F6M94CuV/R1apnT929Qj/Gi6FF3cRxPoK/OHOHt6mo/r4kt5KBiH6PynqycocpHaHHOvhaHTgNClmzcBpUNowmuL2w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=bSr/uqyz; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="bSr/uqyz" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EA3501F000E9; Thu, 9 Jul 2026 17:21:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783617708; bh=ygR5jkfSRc2DlZer6eJtodZHcT2Z+c8aaRhL3htsIjo=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=bSr/uqyzC3j3xoA4wGfF9lHr2KXZN/+l/UmNSYE03z1R0OeKLbg4Rfh9aXH9+6LkS esD9c4tdM7sWlg7JJlo+/9I1FWs/wPoaayFu28nBLQuob7VS9GCSFHWA/m2b/v8E4s oL0hgp7UjT8Lz/JJm8qfCWj7womYScyFwh0R8IhOt1Kvay+SrePNevTOuE5olcCWeV rnXhKHUDmqZoD4yzXdtWPXOnylDplr6eTu9HjgdkCaUR2E1RCsGRqo0QQjdKpkQzUj 8fzbWRXfvlOsa+jwWJAluS31IZI0d2VTo6CHv8/qy022kBBsQY/wolX4siFBzKakAd G2E8ugD1mjrcQ== Date: Thu, 9 Jul 2026 18:21:44 +0100 From: Simon Horman To: Pengpeng Hou Cc: Lino Sanfilippo , Andrew Lunn , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] net: alacritech: add missing MODULE_DEVICE_TABLE() Message-ID: <20260709172144.GX1364329@horms.kernel.org> References: <20260704152053.49780-1-pengpeng@iscas.ac.cn> 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: <20260704152053.49780-1-pengpeng@iscas.ac.cn> On Sat, Jul 04, 2026 at 11:20:53PM +0800, Pengpeng Hou wrote: > The driver has a match table for the pci bus wired into its driver > structure, but the table is not exported with MODULE_DEVICE_TABLE(). > > Add the missing MODULE_DEVICE_TABLE() entry so module alias information > is generated for automatic module loading. > > This is a source-level fix. It does not claim dynamic hardware > reproduction; the evidence is the driver-owned match table, its use by > the driver registration structure, and the missing module alias > publication. > > Signed-off-by: Pengpeng Hou Reviewed-by: Simon Horman