aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/sh
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>2012-12-15 17:50:50 -0500
committerSimon Horman <horms+renesas@verge.net.au>2013-01-24 19:24:21 -0500
commit4a2e0d18f95e1ec2b264f66e7cedec7f3dc54b44 (patch)
tree55e637aad89c04975313eee9959573cd23d66dfe /drivers/sh
parentc9fa88e23a8c6d1a72ba37c7d4df3d05051e8e8e (diff)
sh-pfc: Let the compiler decide whether to inline functions
The compiler should be smart enough to automatically inline static functions that are called from a single location. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Acked-by: Paul Mundt <lethal@linux-sh.org> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'drivers/sh')
-rw-r--r--drivers/sh/pfc/pinctrl.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/sh/pfc/pinctrl.c b/drivers/sh/pfc/pinctrl.c
index b3dbefd5658b..47dbd0231096 100644
--- a/drivers/sh/pfc/pinctrl.c
+++ b/drivers/sh/pfc/pinctrl.c
@@ -116,7 +116,7 @@ static void sh_pfc_noop_disable(struct pinctrl_dev *pctldev, unsigned func,
116{ 116{
117} 117}
118 118
119static inline int sh_pfc_config_function(struct sh_pfc *pfc, unsigned offset) 119static int sh_pfc_config_function(struct sh_pfc *pfc, unsigned offset)
120{ 120{
121 if (sh_pfc_config_gpio(pfc, offset, 121 if (sh_pfc_config_gpio(pfc, offset,
122 PINMUX_TYPE_FUNCTION, 122 PINMUX_TYPE_FUNCTION,
@@ -328,10 +328,8 @@ static struct pinctrl_desc sh_pfc_pinctrl_desc = {
328 .confops = &sh_pfc_pinconf_ops, 328 .confops = &sh_pfc_pinconf_ops,
329}; 329};
330 330
331static inline void sh_pfc_map_one_gpio(struct sh_pfc *pfc, 331static void sh_pfc_map_one_gpio(struct sh_pfc *pfc, struct sh_pfc_pinctrl *pmx,
332 struct sh_pfc_pinctrl *pmx, 332 struct pinmux_gpio *gpio, unsigned offset)
333 struct pinmux_gpio *gpio,
334 unsigned offset)
335{ 333{
336 struct pinmux_data_reg *dummy; 334 struct pinmux_data_reg *dummy;
337 unsigned long flags; 335 unsigned long flags;