summaryrefslogtreecommitdiff
path: root/builtin/endian.h
diff options
context:
space:
mode:
Diffstat (limited to 'builtin/endian.h')
-rw-r--r--builtin/endian.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/builtin/endian.h b/builtin/endian.h
index 65c064bb78..0220836dca 100644
--- a/builtin/endian.h
+++ b/builtin/endian.h
@@ -1,4 +1,4 @@
-/* Copyright 2016 The Chromium OS Authors. All rights reserved.
+/* Copyright 2016 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -17,7 +17,7 @@ extern "C" {
* host byte order. Note that the code currently does not require functions
* for converting little endian integers.
*/
-#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
+#if (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
static inline uint16_t be16toh(uint16_t in)
{
@@ -40,10 +40,10 @@ static inline uint64_t be64toh(uint64_t in)
#define htole32(x) (uint32_t)(x)
#define htole64(x) (uint64_t)(x)
-#endif /* __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ */
+#endif /* __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ */
#ifdef __cplusplus
}
#endif
-#endif /* __EC_BUILTIN_ENDIAN_H */
+#endif /* __EC_BUILTIN_ENDIAN_H */