summaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/pinctrl-imx51.c
diff options
context:
space:
mode:
authorSachin Kamat2013-09-28 14:08:48 +0200
committerLinus Walleij2013-10-08 10:02:25 +0200
commit606fca94f7bd156d37be1b38b3aded3ede5994b1 (patch)
treedfde9baa1c9b604c53c316347f2e86fd2d088144 /drivers/pinctrl/pinctrl-imx51.c
parentMerge branch 'pinmux/next' of git://linuxtv.org/pinchartl/fbdev into devel (diff)
downloadkernel-qcow2-linux-606fca94f7bd156d37be1b38b3aded3ede5994b1.tar.gz
kernel-qcow2-linux-606fca94f7bd156d37be1b38b3aded3ede5994b1.tar.xz
kernel-qcow2-linux-606fca94f7bd156d37be1b38b3aded3ede5994b1.zip
pinctrl: remove redundant of_match_ptr
The data structure of_match_ptr() protects is always compiled in. Hence of_match_ptr() is not needed. This is a squash commit of: pinctrl: at91: Remove redundant of_match_ptr pinctrl: exynos5440: Remove redundant of_match_ptr pinctrl: imx35: Remove redundant of_match_ptr pinctrl: imx51: Remove redundant of_match_ptr pinctrl: imx53: Remove redundant of_match_ptr pinctrl: imx6dl: Remove redundant of_match_ptr pinctrl: imx6q: Remove redundant of_match_ptr pinctrl: samsung: Remove redundant of_match_ptr pinctrl: vf610: Remove redundant of_match_ptr pinctrl: imx6sl: Remove redundant of_match_ptr pinctrl: plgpio: Remove redundant of_match_ptr Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-imx51.c')
-rw-r--r--drivers/pinctrl/pinctrl-imx51.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-imx51.c b/drivers/pinctrl/pinctrl-imx51.c
index db268b920079..19ab182bef61 100644
--- a/drivers/pinctrl/pinctrl-imx51.c
+++ b/drivers/pinctrl/pinctrl-imx51.c
@@ -782,7 +782,7 @@ static struct platform_driver imx51_pinctrl_driver = {
.driver = {
.name = "imx51-pinctrl",
.owner = THIS_MODULE,
- .of_match_table = of_match_ptr(imx51_pinctrl_of_match),
+ .of_match_table = imx51_pinctrl_of_match,
},
.probe = imx51_pinctrl_probe,
.remove = imx_pinctrl_remove,