From: Sachin Kamat Date: Sat, 28 Sep 2013 12:04:07 +0000 (+0530) Subject: gpio: adnp: Remove redundant of_match_ptr X-Git-Tag: upstream/snapshot3+hdmi~4009^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83924fb30038a6b425fe9d9d499e7d8b79d31d21;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Signed-off-by: Linus Walleij --- diff --git a/drivers/gpio/gpio-adnp.c b/drivers/gpio/gpio-adnp.c index c0f3fc4..6439e0e 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,