Re: [PATCH 3/4] firmware: ti_sci: Remove inline keyword from functions

2022-08-26 Thread Tom Rini
On Mon, Jul 25, 2022 at 08:25:05PM -0500, Andrew Davis wrote: > 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

[PATCH 3/4] firmware: ti_sci: Remove inline keyword from functions

2022-07-25 Thread Andrew Davis
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