summaryrefslogtreecommitdiff
path: root/drivers/regulator
diff options
context:
space:
mode:
authorJohn Keeping <jkeeping@inmusicbrands.com>2024-02-26 16:05:53 +0000
committerSasha Levin <sashal@kernel.org>2024-03-26 18:19:34 -0400
commit271d0efed20afb264087ef36b3e5e219e47906b2 (patch)
tree48606fae06e858cdc9862e7f7e58cec85b84772e /drivers/regulator
parent656311b9bf9e764b7cb91b93c6e4cff86435d169 (diff)
downloadlinux-271d0efed20afb264087ef36b3e5e219e47906b2.tar.gz
linux-271d0efed20afb264087ef36b3e5e219e47906b2.tar.bz2
linux-271d0efed20afb264087ef36b3e5e219e47906b2.zip
regulator: userspace-consumer: add module device table
[ Upstream commit 531a0c0cdbff9cecf41073220a826f8b1132f9ab ] The userspace consumer can be built as a module but it cannot be automatically probed as there is no device table to match it up with device tree nodes. Add the missing macro so that the module can load automatically. Fixes: 5c51d4afcf3fd ("regulator: userspace-consumer: Handle regulator-output DT nodes") Signed-off-by: John Keeping <jkeeping@inmusicbrands.com> Link: https://msgid.link/r/20240226160554.1453283-1-jkeeping@inmusicbrands.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/userspace-consumer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/userspace-consumer.c b/drivers/regulator/userspace-consumer.c
index 97f075ed68c9..cb1de24b9862 100644
--- a/drivers/regulator/userspace-consumer.c
+++ b/drivers/regulator/userspace-consumer.c
@@ -210,6 +210,7 @@ static const struct of_device_id regulator_userspace_consumer_of_match[] = {
{ .compatible = "regulator-output", },
{},
};
+MODULE_DEVICE_TABLE(of, regulator_userspace_consumer_of_match);
static struct platform_driver regulator_userspace_consumer_driver = {
.probe = regulator_userspace_consumer_probe,