diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-12-21 05:20:16 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-01-21 03:28:56 -0500 |
commit | ae679c12e83bda92d8f639357f35a3f50f45c3a6 (patch) | |
tree | df6bc0a8ecd9c8d5780c3938c6b6e8d1f957d86e | |
parent | adc01fbd90079fe985213231c16f1ba0d3b6fdeb (diff) |
mfd: max14577: Remove redundant of_match_ptr helper
'max14577_dt_match' is always compiled in. Hence the helper macro
is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/max14577.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max14577.c b/drivers/mfd/max14577.c index a5e1c370c609..ac514fb2b877 100644 --- a/drivers/mfd/max14577.c +++ b/drivers/mfd/max14577.c | |||
@@ -221,7 +221,7 @@ static struct i2c_driver max14577_i2c_driver = { | |||
221 | .name = "max14577", | 221 | .name = "max14577", |
222 | .owner = THIS_MODULE, | 222 | .owner = THIS_MODULE, |
223 | .pm = &max14577_pm, | 223 | .pm = &max14577_pm, |
224 | .of_match_table = of_match_ptr(max14577_dt_match), | 224 | .of_match_table = max14577_dt_match, |
225 | }, | 225 | }, |
226 | .probe = max14577_i2c_probe, | 226 | .probe = max14577_i2c_probe, |
227 | .remove = max14577_i2c_remove, | 227 | .remove = max14577_i2c_remove, |