Re: [PATCH] block: Change extern inline to static inline

2016-10-21 Thread Mika Westerberg
On Fri, Oct 21, 2016 at 04:19:26PM +0200, Tobias Klauser wrote: > With compilers which follow the C99 standard (like modern versions of > gcc and clang), "extern inline" does the opposite thing from older > versions of gcc (emits code for an externally linkable version of the > inline function). >

[PATCH] block: Change extern inline to static inline

2016-10-21 Thread Tobias Klauser
With compilers which follow the C99 standard (like modern versions of gcc and clang), "extern inline" does the opposite thing from older versions of gcc (emits code for an externally linkable version of the inline function). "static inline" does the intended behavior in all cases instead. Descrip