mmc: sdhci-cadence: remove unneeded 'inline' marker
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Tue, 21 Jan 2020 10:58:58 +0000 (19:58 +0900)
committerUlf Hansson <ulf.hansson@linaro.org>
Fri, 24 Jan 2020 11:14:31 +0000 (12:14 +0100)
commit1d45a3f47c0be28989cdbace166e4f73214ff88c
tree61317c4825798abb18f9c712f5a58450295a0d7d
parentc389b0035f0cda5f59f2514303feb9586b6f493a
mmc: sdhci-cadence: remove unneeded 'inline' marker

'static inline' in .c files does not make much sense because
functions may or may not be inlined irrespective of the 'inline'
marker. It is just a hint.

This function is quite small, so very likely to be inlined by the
compiler's optimization (-O2 or -Os), but it is up to the compiler
after all.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
Link: https://lore.kernel.org/r/20200121105858.13325-1-yamada.masahiro@socionext.com
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/sdhci-cadence.c