Commit 3988795e authored by Chen Jiahao's avatar Chen Jiahao Committed by Mark Brown

regulator: mcp16502: Remove redundant of_match_ptr() macros

Since the driver mcp16502 depends on CONFIG_OF,
it makes no difference to wrap of_match_ptr() here.

Remove of_match_ptr() macros to clean it up.
Signed-off-by: default avatarChen Jiahao <chenjiahao16@huawei.com>
Link: https://lore.kernel.org/r/20230809100428.2669817-5-chenjiahao16@huawei.comSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 656ed746
...@@ -110,7 +110,7 @@ static unsigned int mcp16502_of_map_mode(unsigned int mode) ...@@ -110,7 +110,7 @@ static unsigned int mcp16502_of_map_mode(unsigned int mode)
#define MCP16502_REGULATOR(_name, _id, _ranges, _ops, _ramp_table) \ #define MCP16502_REGULATOR(_name, _id, _ranges, _ops, _ramp_table) \
[_id] = { \ [_id] = { \
.name = _name, \ .name = _name, \
.regulators_node = of_match_ptr("regulators"), \ .regulators_node = "regulators", \
.id = _id, \ .id = _id, \
.ops = &(_ops), \ .ops = &(_ops), \
.type = REGULATOR_VOLTAGE, \ .type = REGULATOR_VOLTAGE, \
...@@ -119,7 +119,7 @@ static unsigned int mcp16502_of_map_mode(unsigned int mode) ...@@ -119,7 +119,7 @@ static unsigned int mcp16502_of_map_mode(unsigned int mode)
.linear_ranges = _ranges, \ .linear_ranges = _ranges, \
.linear_min_sel = VDD_LOW_SEL, \ .linear_min_sel = VDD_LOW_SEL, \
.n_linear_ranges = ARRAY_SIZE(_ranges), \ .n_linear_ranges = ARRAY_SIZE(_ranges), \
.of_match = of_match_ptr(_name), \ .of_match = _name, \
.of_map_mode = mcp16502_of_map_mode, \ .of_map_mode = mcp16502_of_map_mode, \
.vsel_reg = (((_id) + 1) << 4), \ .vsel_reg = (((_id) + 1) << 4), \
.vsel_mask = MCP16502_VSEL, \ .vsel_mask = MCP16502_VSEL, \
...@@ -587,7 +587,7 @@ static struct i2c_driver mcp16502_drv = { ...@@ -587,7 +587,7 @@ static struct i2c_driver mcp16502_drv = {
.driver = { .driver = {
.name = "mcp16502-regulator", .name = "mcp16502-regulator",
.probe_type = PROBE_PREFER_ASYNCHRONOUS, .probe_type = PROBE_PREFER_ASYNCHRONOUS,
.of_match_table = of_match_ptr(mcp16502_ids), .of_match_table = mcp16502_ids,
#ifdef CONFIG_PM #ifdef CONFIG_PM
.pm = &mcp16502_pm_ops, .pm = &mcp16502_pm_ops,
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment