aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/FunctionAttributes.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-03-04 08:03:13 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-03-04 08:03:13 +0000
commit7e7124e40ba2155c5ee4348701be30d3790edca3 (patch)
tree7c8d7f6fb75555874b10577e2937e00a3deec284 /LUFA/Common/FunctionAttributes.h
parent5e787a4bb04f8a27f9300077361403adf2e92b3f (diff)
downloadlufa-7e7124e40ba2155c5ee4348701be30d3790edca3.tar.gz
lufa-7e7124e40ba2155c5ee4348701be30d3790edca3.tar.bz2
lufa-7e7124e40ba2155c5ee4348701be30d3790edca3.zip
Updated makefiles to reflect new dfu-ee programming target invocations (supplied by Opendous, Inc.).
Renamed the ATTR_ALWAYSINLINE function attribute macro to ATTR_ALWAYS_INLINE to match the style of the other function attribute macro names. Added ATTR_ALWAYS_INLINE attribute to several inlined library functions, to ensure they are inlined in all circumstances. Cleanups to Endpoint.h and Pipe.h. Added better documentation for the endpoint and pipe interrupts.
Diffstat (limited to 'LUFA/Common/FunctionAttributes.h')
-rw-r--r--LUFA/Common/FunctionAttributes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Common/FunctionAttributes.h b/LUFA/Common/FunctionAttributes.h
index 16503bb55..daa6c4a26 100644
--- a/LUFA/Common/FunctionAttributes.h
+++ b/LUFA/Common/FunctionAttributes.h
@@ -84,7 +84,7 @@
/** Forces the compiler to inline the specified function. When applied, the given function will be
* inlined under all circumstances.
*/
- #define ATTR_ALWAYSINLINE __attribute__ ((always_inline))
+ #define ATTR_ALWAYS_INLINE __attribute__ ((always_inline))
/** Indicates that the specified function is pure, in that it has no side-effects other than global
* or parameter variable access.