aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerve Codina <[email protected]>2024-03-14 13:33:46 +0100
committerDavid S. Miller <[email protected]>2024-03-18 09:25:58 +0000
commitbadc9e33c79541cd62fc8238c2eb564d41feac56 (patch)
treeeb54b692496fd09605dbf879749680a1fb5d2c69
parentea80e3ed09ab2c2b75724faf5484721753e92c31 (diff)
net: wan: fsl_qmc_hdlc: Fix module compilation
The fsl_qmc_driver does not compile as module: error: ‘qmc_hdlc_driver’ undeclared here (not in a function); 405 | MODULE_DEVICE_TABLE(of, qmc_hdlc_driver); | ^~~~~~~~~~~~~~~ Fix the typo. Fixes: b40f00ecd463 ("net: wan: Add support for QMC HDLC") Reported-by: Michael Ellerman <[email protected]> Closes: https://lore.kernel.org/linux-kernel/[email protected]/ Signed-off-by: Herve Codina <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--drivers/net/wan/fsl_qmc_hdlc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wan/fsl_qmc_hdlc.c b/drivers/net/wan/fsl_qmc_hdlc.c
index 960371df470a..f69b1f579a0c 100644
--- a/drivers/net/wan/fsl_qmc_hdlc.c
+++ b/drivers/net/wan/fsl_qmc_hdlc.c
@@ -780,7 +780,7 @@ static const struct of_device_id qmc_hdlc_id_table[] = {
{ .compatible = "fsl,qmc-hdlc" },
{} /* sentinel */
};
-MODULE_DEVICE_TABLE(of, qmc_hdlc_driver);
+MODULE_DEVICE_TABLE(of, qmc_hdlc_id_table);
static struct platform_driver qmc_hdlc_driver = {
.driver = {