aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-09-05 17:44:57 +0200
committerDean Camera <dean@fourwalledcubicle.com>2013-09-05 17:44:57 +0200
commit716f356b21fed874e3a635fd378c1ca35315d95d (patch)
tree5611e01bf538ceaf0786bb0b5e0cffdd0906e911 /LUFA/Drivers
parentb229aef6f7d570ba55a5d1e3b5137e71ae27ffac (diff)
downloadlufa-716f356b21fed874e3a635fd378c1ca35315d95d.tar.gz
lufa-716f356b21fed874e3a635fd378c1ca35315d95d.tar.bz2
lufa-716f356b21fed874e3a635fd378c1ca35315d95d.zip
Minor code style fix.
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/Misc/RingBuffer.h6
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);