aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Common/Endianness.h
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2019-09-06 15:53:07 -0700
committerDrashna Jael're <drashna@live.com>2019-09-06 15:53:07 -0700
commit0dfd13588686bb5e3da0eab99b2426261c3b4d14 (patch)
treea26927541c77349244d2bc043f7795eb41f2e068 /LUFA/Common/Endianness.h
parentce10f7642b0459e409839b23cc91498945119b4d (diff)
parent6d9077370b613e9bf26d5d5e03481258873efa02 (diff)
downloadlufa-0dfd13588686bb5e3da0eab99b2426261c3b4d14.tar.gz
lufa-0dfd13588686bb5e3da0eab99b2426261c3b4d14.tar.bz2
lufa-0dfd13588686bb5e3da0eab99b2426261c3b4d14.zip
Merge in changes from upstream
Diffstat (limited to 'LUFA/Common/Endianness.h')
-rw-r--r--LUFA/Common/Endianness.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/Common/Endianness.h b/LUFA/Common/Endianness.h
index 32ef463a0..cdc90e5b8 100644
--- a/LUFA/Common/Endianness.h
+++ b/LUFA/Common/Endianness.h
@@ -122,7 +122,7 @@
#define CPU_TO_BE32(x) (x)
#elif !defined(le16_to_cpu)
/** \name Run-time endianness conversion */
- //@{
+ /**@{*/
/** Performs a conversion between a Little Endian encoded 16-bit piece of data and the
* Endianness of the currently selected CPU architecture.
@@ -252,10 +252,10 @@
*/
#define cpu_to_be32(x) SwapEndian_32(x)
- //@}
+ /**@}*/
/** \name Compile-time endianness conversion */
- //@{
+ /**@{*/
/** Performs a conversion between a Little Endian encoded 16-bit piece of data and the
* Endianness of the currently selected CPU architecture.
@@ -385,7 +385,7 @@
*/
#define CPU_TO_BE32(x) SWAPENDIAN_32(x)
- //! @}
+ /**@}*/
#endif
/* Inline Functions: */