Skip to content

Commit

Permalink
watchdog: imx7ulp: Remove inline annotations
Browse files Browse the repository at this point in the history
Compiler is smart enough and knows when to inline, so there
is no need to mark some of these functions as 'inline'.

Remove such annotations.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20191029174037.25381-4-festevam@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
  • Loading branch information
Fabio Estevam authored and Wim Van Sebroeck committed Nov 18, 2019
1 parent 9ab26e3 commit c37e358
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/watchdog/imx7ulp_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct imx7ulp_wdt_device {
struct clk *clk;
};

static inline void imx7ulp_wdt_enable(struct watchdog_device *wdog, bool enable)
static void imx7ulp_wdt_enable(struct watchdog_device *wdog, bool enable)
{
struct imx7ulp_wdt_device *wdt = watchdog_get_drvdata(wdog);

Expand All @@ -59,7 +59,7 @@ static inline void imx7ulp_wdt_enable(struct watchdog_device *wdog, bool enable)
writel(val & ~WDOG_CS_EN, wdt->base + WDOG_CS);
}

static inline bool imx7ulp_wdt_is_enabled(void __iomem *base)
static bool imx7ulp_wdt_is_enabled(void __iomem *base)
{
u32 val = readl(base + WDOG_CS);

Expand Down Expand Up @@ -118,7 +118,7 @@ static const struct watchdog_info imx7ulp_wdt_info = {
WDIOF_MAGICCLOSE,
};

static inline void imx7ulp_wdt_init(void __iomem *base, unsigned int timeout)
static void imx7ulp_wdt_init(void __iomem *base, unsigned int timeout)
{
u32 val;

Expand Down

0 comments on commit c37e358

Please sign in to comment.