Hi Vinicius, > lib/bluetooth.h | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 files changed, 60 insertions(+), 0 deletions(-) > > diff --git a/lib/bluetooth.h b/lib/bluetooth.h > index e9ced19..ba241a1 100644 > --- a/lib/bluetooth.h > +++ b/lib/bluetooth.h > @@ -172,60 +172,120 @@ static inline uint64_t bt_get_le64(void *ptr) > return bt_get_unaligned((uint64_t *) ptr); > } > > +static inline void bt_put_le64(uint64_t val, void *ptr) > +{ > + bt_put_unaligned(val, (uint64_t *) ptr); > +} > + and how does this work on a big endian machine? Regards Marcel -- 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