Add helper to avoid possible unaligned memory access when handling uint64 value using little-endian representation. --- src/shared/util.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/shared/util.h b/src/shared/util.h index 8caee61..29f6f6b 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -111,6 +111,11 @@ static inline uint32_t get_le32(const void *ptr) return le32_to_cpu(get_unaligned((const uint32_t *) ptr)); } +static inline uint64_t get_le64(const void *ptr) +{ + return le64_to_cpu(get_unaligned((const uint64_t *) ptr)); +} + static inline void put_le16(uint16_t val, void *dst) { put_unaligned(cpu_to_le16(val), (uint16_t *) dst); -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html