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 A05E44756C4; Fri, 7 Aug 2026 15:24:57 +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=1786116298; cv=none; b=pd3aqY4pyaDPF+ELA1aK+fVuf/62a+FtCfpZRuhYMNJfF57TK5Ua2a93RTf6FTJQO4fIYcnGgGSAe983eDFAXi8qs5Kv4kXWWkyw5DdtG48QgI28/awtfOmUdOz3NqD0PkU7Ts695Ee4YYAUDlK0uJ54R0KIXIvP5WgCDnimfpc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786116298; c=relaxed/simple; bh=zkDcM+v6eybyJAyr4JGcFRG3NQx+IX3TFRM+WLZVp/o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=N2oH1R9GBa5Qq/pce5ZZeEhBAowlcH/I9LZwkZn/bAimLHNmrM17o7x9aFznc4TZCxJIeXyNnDgkx2fifF0DUImd6ZcHkJbcrSvBjJO7w9d2Sq5yugTq6EpTa04ncyN4F1nf/61w5f+iEicNMcEBGcUUT7BeCQZBQ+5tTPR8/7A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=BbhdWojT; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="BbhdWojT" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 083D01F000E9; Fri, 7 Aug 2026 15:24:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786116297; bh=LaYSUSGZu7MyNQyxBypDvR7yN9vuPxoM3ZrcqJNZtVM=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=BbhdWojTAGuMEST8bYRXcP4wsfgSPHlYN9BfOgAcfnRr7a9UKbHo5h9JYjHAUaWT9 2TZVSwWRhEVFpFvCiTaEljVPckfeMIG1cmweHKL94Dq5LtvrallfOxL2hgLoTJSbOH fm8BNH2zNTx+tgPdaYAcVmRAIynX5EGWFhSm68H0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Pengpeng Hou , Pavel Pisa , stable@kernel.org, Marc Kleine-Budde Subject: [PATCH 6.6 182/261] can: ctucanfd: add missing MODULE_DEVICE_TABLE() Date: Fri, 7 Aug 2026 16:38:59 +0200 Message-ID: <20260807143419.290403070@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143415.358597922@linuxfoundation.org> References: <20260807143415.358597922@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Pengpeng Hou commit d937bdb244a751fe5967052ea2d64a7b2c476cc0 upstream. 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 Acked-by: Pavel Pisa Link: https://patch.msgid.link/20260704151957.48194-1-pengpeng@iscas.ac.cn Fixes: 792a5b678e81 ("can: ctucanfd: CTU CAN FD open-source IP core - PCI bus support.") Cc: stable@kernel.org Signed-off-by: Marc Kleine-Budde Signed-off-by: Greg Kroah-Hartman --- drivers/net/can/ctucanfd/ctucanfd_pci.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/can/ctucanfd/ctucanfd_pci.c +++ b/drivers/net/can/ctucanfd/ctucanfd_pci.c @@ -274,6 +274,7 @@ static const struct pci_device_id ctucan CTUCAN_WITH_CTUCAN_ID)}, {}, }; +MODULE_DEVICE_TABLE(pci, ctucan_pci_tbl); static struct pci_driver ctucan_pci_driver = { .name = KBUILD_MODNAME,