aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/mchp23k256.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2022-02-02 14:34:03 +0000
committerMiquel Raynal <miquel.raynal@bootlin.com>2022-02-07 16:31:20 +0100
commitbc7ee2e34b219da6813c17a1680dd20766648883 (patch)
treed5574f88c50a1c2ee5c6aaac1615168695aba089 /drivers/mtd/devices/mchp23k256.c
parentmtd: rawnand: Fix misuses of of_match_node() (diff)
downloadlinux-dev-bc7ee2e34b219da6813c17a1680dd20766648883.tar.xz
linux-dev-bc7ee2e34b219da6813c17a1680dd20766648883.zip
mtd: mchp23k256: Add SPI ID table
Currently autoloading for SPI devices does not use the DT ID table, it uses SPI modalises. Supporting OF modalises is going to be difficult if not impractical, an attempt was made but has been reverted, so ensure that module autoloading works for this driver by adding an id_table listing the SPI IDs for everything. Fixes: 96c8395e2166 ("spi: Revert modalias changes") Signed-off-by: Mark Brown <broonie@kernel.org> Reviewed-by: Michael Walle <michael@walle.cc> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20220202143404.16070-3-broonie@kernel.org
Diffstat (limited to '')
-rw-r--r--drivers/mtd/devices/mchp23k256.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/mtd/devices/mchp23k256.c b/drivers/mtd/devices/mchp23k256.c
index bf51eebf052c..fa35320bff62 100644
--- a/drivers/mtd/devices/mchp23k256.c
+++ b/drivers/mtd/devices/mchp23k256.c
@@ -231,6 +231,19 @@ static const struct of_device_id mchp23k256_of_table[] = {
};
MODULE_DEVICE_TABLE(of, mchp23k256_of_table);
+static const struct spi_device_id mchp23k256_spi_ids[] = {
+ {
+ .name = "mchp23k256",
+ .driver_data = (kernel_ulong_t)&mchp23k256_caps,
+ },
+ {
+ .name = "mchp23lcv1024",
+ .driver_data = (kernel_ulong_t)&mchp23lcv1024_caps,
+ },
+ {}
+};
+MODULE_DEVICE_TABLE(spi, mchp23k256_spi_ids);
+
static struct spi_driver mchp23k256_driver = {
.driver = {
.name = "mchp23k256",
@@ -238,6 +251,7 @@ static struct spi_driver mchp23k256_driver = {
},
.probe = mchp23k256_probe,
.remove = mchp23k256_remove,
+ .id_table = mchp23k256_spi_ids,
};
module_spi_driver(mchp23k256_driver);