Commit f07708c4 authored by Ralph Sennhauser's avatar Ralph Sennhauser Committed by Linus Walleij

gpio: mvebu: let the compiler inline

A modern compiler should know better when to inline, so drop the inline
keywords.
Signed-off-by: default avatarRalph Sennhauser <ralph.sennhauser@gmail.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent f4c240ca
...@@ -99,35 +99,32 @@ struct mvebu_gpio_chip { ...@@ -99,35 +99,32 @@ struct mvebu_gpio_chip {
* Functions returning addresses of individual registers for a given * Functions returning addresses of individual registers for a given
* GPIO controller. * GPIO controller.
*/ */
static inline void __iomem *mvebu_gpioreg_out(struct mvebu_gpio_chip *mvchip) static void __iomem *mvebu_gpioreg_out(struct mvebu_gpio_chip *mvchip)
{ {
return mvchip->membase + GPIO_OUT_OFF; return mvchip->membase + GPIO_OUT_OFF;
} }
static inline void __iomem *mvebu_gpioreg_blink(struct mvebu_gpio_chip *mvchip) static void __iomem *mvebu_gpioreg_blink(struct mvebu_gpio_chip *mvchip)
{ {
return mvchip->membase + GPIO_BLINK_EN_OFF; return mvchip->membase + GPIO_BLINK_EN_OFF;
} }
static inline void __iomem * static void __iomem *mvebu_gpioreg_io_conf(struct mvebu_gpio_chip *mvchip)
mvebu_gpioreg_io_conf(struct mvebu_gpio_chip *mvchip)
{ {
return mvchip->membase + GPIO_IO_CONF_OFF; return mvchip->membase + GPIO_IO_CONF_OFF;
} }
static inline void __iomem *mvebu_gpioreg_in_pol(struct mvebu_gpio_chip *mvchip) static void __iomem *mvebu_gpioreg_in_pol(struct mvebu_gpio_chip *mvchip)
{ {
return mvchip->membase + GPIO_IN_POL_OFF; return mvchip->membase + GPIO_IN_POL_OFF;
} }
static inline void __iomem * static void __iomem *mvebu_gpioreg_data_in(struct mvebu_gpio_chip *mvchip)
mvebu_gpioreg_data_in(struct mvebu_gpio_chip *mvchip)
{ {
return mvchip->membase + GPIO_DATA_IN_OFF; return mvchip->membase + GPIO_DATA_IN_OFF;
} }
static inline void __iomem * static void __iomem *mvebu_gpioreg_edge_cause(struct mvebu_gpio_chip *mvchip)
mvebu_gpioreg_edge_cause(struct mvebu_gpio_chip *mvchip)
{ {
int cpu; int cpu;
...@@ -144,8 +141,7 @@ mvebu_gpioreg_edge_cause(struct mvebu_gpio_chip *mvchip) ...@@ -144,8 +141,7 @@ mvebu_gpioreg_edge_cause(struct mvebu_gpio_chip *mvchip)
} }
} }
static inline void __iomem * static void __iomem *mvebu_gpioreg_edge_mask(struct mvebu_gpio_chip *mvchip)
mvebu_gpioreg_edge_mask(struct mvebu_gpio_chip *mvchip)
{ {
int cpu; int cpu;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment