diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2013-09-28 08:08:48 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-10-08 04:02:25 -0400 |
commit | 606fca94f7bd156d37be1b38b3aded3ede5994b1 (patch) | |
tree | dfde9baa1c9b604c53c316347f2e86fd2d088144 /drivers/pinctrl/pinctrl-imx6sl.c | |
parent | fdc07cc13ae6a59415617c42d8fd33974f65fcd8 (diff) |
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-imx6sl.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-imx6sl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-imx6sl.c b/drivers/pinctrl/pinctrl-imx6sl.c index 4eb7ccab5f2d..f21b7389df3c 100644 --- a/drivers/pinctrl/pinctrl-imx6sl.c +++ b/drivers/pinctrl/pinctrl-imx6sl.c | |||
@@ -380,7 +380,7 @@ static struct platform_driver imx6sl_pinctrl_driver = { | |||
380 | .driver = { | 380 | .driver = { |
381 | .name = "imx6sl-pinctrl", | 381 | .name = "imx6sl-pinctrl", |
382 | .owner = THIS_MODULE, | 382 | .owner = THIS_MODULE, |
383 | .of_match_table = of_match_ptr(imx6sl_pinctrl_of_match), | 383 | .of_match_table = imx6sl_pinctrl_of_match, |
384 | }, | 384 | }, |
385 | .probe = imx6sl_pinctrl_probe, | 385 | .probe = imx6sl_pinctrl_probe, |
386 | .remove = imx_pinctrl_remove, | 386 | .remove = imx_pinctrl_remove, |