mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-05-05 07:43:05 +00:00
Cleanup and optimization of the internal serial retrieval routines.
Renamed ATTR_NOINLINE to ATTR_NO_INLINE to fit with the rest of the library function attribute names.
This commit is contained in:
@@ -87,7 +87,7 @@
|
||||
/** Prevents the compiler from considering a specified function for inlining. When applied, the given
|
||||
* function will not be inlined under any circumstances.
|
||||
*/
|
||||
#define ATTR_NOINLINE __attribute__ ((noinline))
|
||||
#define ATTR_NO_INLINE __attribute__ ((noinline))
|
||||
|
||||
/** Forces the compiler to inline the specified function. When applied, the given function will be
|
||||
* inlined under all circumstances.
|
||||
|
||||
Reference in New Issue
Block a user