aboutsummaryrefslogtreecommitdiff
path: root/drivers/regulator
diff options
context:
space:
mode:
authorGravatar Chen Jiahao <chenjiahao16@huawei.com> 2023-08-09 10:04:26 +0000
committerGravatar Mark Brown <broonie@kernel.org> 2023-08-09 12:52:44 +0100
commitc329adf3026034c84ddd61c0b19db53d40510ae7 (patch)
tree8d36ba0d366da9722c491e08dd996b72f3d7f5d9 /drivers/regulator
parentregulator: mcp16502: Remove redundant of_match_ptr() macros (diff)
downloadlinux-c329adf3026034c84ddd61c0b19db53d40510ae7.tar.gz
linux-c329adf3026034c84ddd61c0b19db53d40510ae7.tar.bz2
linux-c329adf3026034c84ddd61c0b19db53d40510ae7.zip
regulator: mpq7920: Remove redundant of_match_ptr() macro
Since the driver mpq7920 depends on CONFIG_OF, it makes no difference to wrap of_match_ptr() here. Remove the of_match_ptr() macro to clean it up. Signed-off-by: Chen Jiahao <chenjiahao16@huawei.com> Link: https://lore.kernel.org/r/20230809100428.2669817-6-chenjiahao16@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/mpq7920.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/mpq7920.c b/drivers/regulator/mpq7920.c
index 4926c229109b..a670e09891e7 100644
--- a/drivers/regulator/mpq7920.c
+++ b/drivers/regulator/mpq7920.c
@@ -318,7 +318,7 @@ static struct i2c_driver mpq7920_regulator_driver = {
.driver = {
.name = "mpq7920",
.probe_type = PROBE_PREFER_ASYNCHRONOUS,
- .of_match_table = of_match_ptr(mpq7920_of_match),
+ .of_match_table = mpq7920_of_match,
},
.probe = mpq7920_i2c_probe,
.id_table = mpq7920_id,