diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-06-13 17:18:34 +0200 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2016-06-15 08:37:41 +0200 |
commit | 56411f3c053efc29f761a4523f2d42c79b03a575 (patch) | |
tree | 8965b09e0886bbd400bc5e68a747987f16ff7b8b /drivers/pinctrl/pinctrl-at91.c | |
parent | 648eb7a1bc3ceadbb2450272bce5297b7aa3d37e (diff) | |
download | talos-op-linux-56411f3c053efc29f761a4523f2d42c79b03a575.tar.gz talos-op-linux-56411f3c053efc29f761a4523f2d42c79b03a575.zip |
pinctrl: fix incorrect inline keyword in multiple drivers
When building with 'make W=1', we get harmless warnings about
five drivers in drivers/pinctrl, which all contain a copy of
the same line:
drivers/pinctrl/freescale/pinctrl-imx1-core.c:160:1: error: 'inline' is not at beginning of declaration [-Werror=old-style-declaration]
This replaces the somewhat nonstandard 'static const inline'
with 'static inline const', which has the same meaning but
does not cause this warning.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl/pinctrl-at91.c')
-rw-r--r-- | drivers/pinctrl/pinctrl-at91.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c index cb9a0849b8ba..80daead3a5a1 100644 --- a/drivers/pinctrl/pinctrl-at91.c +++ b/drivers/pinctrl/pinctrl-at91.c @@ -188,7 +188,7 @@ struct at91_pinctrl { struct at91_pinctrl_mux_ops *ops; }; -static const inline struct at91_pin_group *at91_pinctrl_find_group_by_name( +static inline const struct at91_pin_group *at91_pinctrl_find_group_by_name( const struct at91_pinctrl *info, const char *name) { |