[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20210109021046.21907-1-matthias.bgg@kernel.org>
Date: Sat, 9 Jan 2021 03:10:44 +0100
From: matthias.bgg@...nel.org
To: Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>
Cc: Hsin-Hsiung Wang <hsin-hsiung.wang@...iatek.com>,
Axel Lin <axel.lin@...ics.com>,
Chen Zhong <chen.zhong@...iatek.com>,
Gene Chen <gene_chen@...htek.com>,
linux-kernel@...r.kernel.org, linux-mediatek@...ts.infradead.org,
linux-arm-kernel@...ts.infradead.org,
Matthias Brugger <matthias.bgg@...il.com>,
Matti Vaittinen <matti.vaittinen@...rohmeurope.com>,
Matthias Brugger <mbrugger@...e.com>
Subject: [PATCH 1/3] regulator: mt6360: Add OF match table
From: Matthias Brugger <mbrugger@...e.com>
Binding documentation mentions that a compatible is required for the
MT6360 device node, but the driver doesn't provide a OF match table.
Signed-off-by: Matthias Brugger <mbrugger@...e.com>
---
drivers/regulator/mt6360-regulator.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/regulator/mt6360-regulator.c b/drivers/regulator/mt6360-regulator.c
index 15308ee29c13..07cbb9bb3c09 100644
--- a/drivers/regulator/mt6360-regulator.c
+++ b/drivers/regulator/mt6360-regulator.c
@@ -445,9 +445,16 @@ static const struct platform_device_id mt6360_regulator_id_table[] = {
};
MODULE_DEVICE_TABLE(platform, mt6360_regulator_id_table);
+static const struct of_device_id mt6360_of_match[] = {
+ { .compatible = "mediatek,mt6360-regulator", },
+ { /* sentinel */ },
+};
+MODULE_DEVICE_TABLE(of, mt6360_of_match);
+
static struct platform_driver mt6360_regulator_driver = {
.driver = {
.name = "mt6360-regulator",
+ .of_match_table = of_match_ptr(mt6360_of_match),
},
.probe = mt6360_regulator_probe,
.id_table = mt6360_regulator_id_table,
--
2.29.2
Powered by blists - more mailing lists