]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
gpio: adnp: Remove redundant of_match_ptr
authorSachin Kamat <sachin.kamat@linaro.org>
Sat, 28 Sep 2013 12:04:07 +0000 (17:34 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 2 Oct 2013 10:42:38 +0000 (12:42 +0200)
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>
drivers/gpio/gpio-adnp.c

index c0f3fc44ab0eca1957a1bbf192dca1bc6be04291..6439e0e5881c9933f9e71e841008e2e0f812ea8d 100644 (file)
@@ -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,