mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-29 12:32:07 +00:00
Minor code style fix.
This commit is contained in:
parent
b229aef6f7
commit
716f356b21
@ -235,8 +235,10 @@
|
|||||||
* \param[in,out] Buffer Pointer to a ring buffer structure to insert into.
|
* \param[in,out] Buffer Pointer to a ring buffer structure to insert into.
|
||||||
* \param[in] Data Data element to insert into the buffer.
|
* \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,
|
||||||
static inline void RingBuffer_Insert(RingBuffer_t* Buffer, const uint8_t Data)
|
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);
|
GCC_FORCE_POINTER_ACCESS(Buffer);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user