diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-28 17:34:07 +0530 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-10-02 12:42:38 +0200 |
commit | 83924fb30038a6b425fe9d9d499e7d8b79d31d21 (patch) | |
tree | 6c92ee2a7484cc5bc649ca1233d78b8678c66b77 /drivers/gpio | |
parent | 85649711a8959f181b8b646bb985996736af97b8 (diff) |
gpio: adnp: Remove redundant of_match_ptr
The data structure of_match_ptr() protects is always compiled in.
Hence of_match_ptr() is not needed.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-adnp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-adnp.c b/drivers/gpio/gpio-adnp.c index c0f3fc44ab0e..6439e0e5881c 100644 --- a/drivers/gpio/gpio-adnp.c +++ b/drivers/gpio/gpio-adnp.c @@ -594,7 +594,7 @@ static struct i2c_driver adnp_i2c_driver = { .driver = { .name = "gpio-adnp", .owner = THIS_MODULE, - .of_match_table = of_match_ptr(adnp_of_match), + .of_match_table = adnp_of_match, }, .probe = adnp_i2c_probe, .remove = adnp_i2c_remove, |