diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-09-05 17:44:57 +0200 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-09-05 17:44:57 +0200 |
commit | 716f356b21fed874e3a635fd378c1ca35315d95d (patch) | |
tree | 5611e01bf538ceaf0786bb0b5e0cffdd0906e911 /LUFA/Drivers/Misc | |
parent | b229aef6f7d570ba55a5d1e3b5137e71ae27ffac (diff) | |
download | lufa-716f356b21fed874e3a635fd378c1ca35315d95d.tar.gz lufa-716f356b21fed874e3a635fd378c1ca35315d95d.tar.bz2 lufa-716f356b21fed874e3a635fd378c1ca35315d95d.zip |
Minor code style fix.
Diffstat (limited to 'LUFA/Drivers/Misc')
-rw-r--r-- | LUFA/Drivers/Misc/RingBuffer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/LUFA/Drivers/Misc/RingBuffer.h b/LUFA/Drivers/Misc/RingBuffer.h index bc6cfe885..d49a04ff1 100644 --- a/LUFA/Drivers/Misc/RingBuffer.h +++ b/LUFA/Drivers/Misc/RingBuffer.h @@ -235,8 +235,10 @@ * \param[in,out] Buffer Pointer to a ring buffer structure to insert into. * \param[in] Data Data element to insert into the buffer. */ - static inline void RingBuffer_Insert(RingBuffer_t* Buffer, const uint8_t Data) ATTR_NON_NULL_PTR_ARG(1); - static inline void RingBuffer_Insert(RingBuffer_t* Buffer, const uint8_t Data) + static inline void RingBuffer_Insert(RingBuffer_t* Buffer, + const uint8_t Data) ATTR_NON_NULL_PTR_ARG(1); + static inline void RingBuffer_Insert(RingBuffer_t* Buffer, + const uint8_t Data) { GCC_FORCE_POINTER_ACCESS(Buffer); |