diff options
author | Charles Keepax <ckeepax@opensource.cirrus.com> | 2023-03-23 13:41:38 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2023-05-11 23:17:36 +0900 |
commit | b439c6c0191f23339c5497708cacf354a2bcf56c (patch) | |
tree | de7b2e0550c8459930eeee9a22de9b7c3175fbec | |
parent | ee146dad5c9639de80bd284dccadee822d67866f (diff) | |
download | linux-stable-b439c6c0191f23339c5497708cacf354a2bcf56c.tar.gz linux-stable-b439c6c0191f23339c5497708cacf354a2bcf56c.tar.bz2 linux-stable-b439c6c0191f23339c5497708cacf354a2bcf56c.zip |
mfd: arizona-spi: Add missing MODULE_DEVICE_TABLE
[ Upstream commit 972c91fd7beddc3f19c8c855f6e60e7dbd435cbd ]
This patch adds missing MODULE_DEVICE_TABLE definition
which generates correct modalias for automatic loading
of this driver when it is built as a module.
Fixes: 3f65555c417c ("mfd: arizona: Split of_match table into I2C and SPI versions")
Signed-off-by: Charles Keepax <ckeepax@opensource.cirrus.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20230323134138.834369-1-ckeepax@opensource.cirrus.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/mfd/arizona-spi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/arizona-spi.c b/drivers/mfd/arizona-spi.c index da05b966d48c..02cf4f3e91d7 100644 --- a/drivers/mfd/arizona-spi.c +++ b/drivers/mfd/arizona-spi.c @@ -277,6 +277,7 @@ static const struct of_device_id arizona_spi_of_match[] = { { .compatible = "cirrus,cs47l24", .data = (void *)CS47L24 }, {}, }; +MODULE_DEVICE_TABLE(of, arizona_spi_of_match); #endif static struct spi_driver arizona_spi_driver = { |