regulator: tps65132: Add of_match table
BugLink: https://bugs.launchpad.net/bugs/2070349 [ Upstream commit a469158eaf8f4b10263b417856d923dfa38ae96d ] Add of_match table for "ti,tps65132" compatible string. This fixes automatic driver loading when using device-tree, and if built as a module like major linux distributions do. Signed-off-by: André Apitzsch <git@apitzsch.eu> Link: https://msgid.link/r/20240325-of_tps65132-v1-1-86a5f7ef4ede@apitzsch.eu Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Manuel Diewald <manuel.diewald@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
This commit is contained in:
committed by
Stefan Bader
parent
72dc8ad90b
commit
d7d6895e34
@@ -267,10 +267,17 @@ static const struct i2c_device_id tps65132_id[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(i2c, tps65132_id);
|
||||
|
||||
static const struct of_device_id __maybe_unused tps65132_of_match[] = {
|
||||
{ .compatible = "ti,tps65132" },
|
||||
{},
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, tps65132_of_match);
|
||||
|
||||
static struct i2c_driver tps65132_i2c_driver = {
|
||||
.driver = {
|
||||
.name = "tps65132",
|
||||
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
|
||||
.of_match_table = of_match_ptr(tps65132_of_match),
|
||||
},
|
||||
.probe = tps65132_probe,
|
||||
.id_table = tps65132_id,
|
||||
|
||||
Reference in New Issue
Block a user