firmware: ti_sci: Remove inline keyword from functions
authorAndrew Davis <afd@ti.com>
Tue, 26 Jul 2022 01:25:05 +0000 (20:25 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 26 Aug 2022 14:55:46 +0000 (10:55 -0400)
commitf127a58e054b5607803da62e2b80cb4cd4194938
tree030d4046591c063999ac4cfb28ac9ee2a8d0a6c3
parent0d74f2684bc6e0baa8e9fc8af6de1e8f446f3a52
firmware: ti_sci: Remove inline keyword from functions

The inline hint is not needed here, the compiler will do the right thing
based on if we are compiling for speed or for code size. In this case the
inline causes this function to be placed inside each callsite which is
not the right thing to do for either speed nor size. There is no
performance benefit to this due to the larger function size reducing
cache locality, but there is a huge size penalty. Remove inline keyword.

Signed-off-by: Andrew Davis <afd@ti.com>
drivers/firmware/ti_sci.c