mfd: ocelot-spi: Add missing MODULE_DEVICE_TABLE
authorYang Yingliang <yangyingliang@huawei.com>
Thu, 22 Sep 2022 10:37:03 +0000 (18:37 +0800)
committerLee Jones <lee@kernel.org>
Wed, 28 Sep 2022 15:17:42 +0000 (16:17 +0100)
This patch adds missing MODULE_DEVICE_TABLE definition which generates
correct modalias for automatic loading of this driver when it is built
as an external module.

Fixes: f3e893626abe ("mfd: ocelot: Add support for the vsc7512 chip via spi")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20220922103703.1731266-1-yangyingliang@huawei.com
drivers/mfd/ocelot-spi.c

index 0f097f4829d1a8efe3829aded8ff9f454fadd472..2ecd271de2fb960a8604a160813a8bacb16b9071 100644 (file)
@@ -276,6 +276,7 @@ static const struct spi_device_id ocelot_spi_ids[] = {
        { "vsc7512", 0 },
        { }
 };
+MODULE_DEVICE_TABLE(spi, ocelot_spi_ids);
 
 static const struct of_device_id ocelot_spi_of_match[] = {
        { .compatible = "mscc,vsc7512" },