Re: [PATCH] clk: tegra: fix old-style declaration
From: Stephen Boyd <sboyd@kernel.org>
Date: 2021-08-29 18:38:29
Also in:
linux-clk, lkml
From: Stephen Boyd <sboyd@kernel.org>
Date: 2021-08-29 18:38:29
Also in:
linux-clk, lkml
Quoting Arnd Bergmann (2021-03-22 14:50:41)
From: Arnd Bergmann <arnd@arndb.de>
With extra warnings enabled, gcc complains about a slightly odd
prototype:
drivers/clk/tegra/clk-dfll.c:1380:1: error: 'inline' is not at beginning of declaration [-Werror=old-style-declaration]
1380 | static void inline dfll_debug_init(struct tegra_dfll *td) { }
Move the 'inline' keyword to the start of the line.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---Applied to clk-next