Skip to content

Commit

Permalink
Fix build due to accidental trailing semicolons after some function a…
Browse files Browse the repository at this point in the history
…ttributes.
  • Loading branch information
abcminiuser committed Nov 19, 2023
1 parent 0200c23 commit d2aaa0a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion LUFA/Drivers/Board/LEDs.h
Expand Up @@ -115,7 +115,7 @@
static inline void LEDs_SetAllLEDs(const uint_reg_t LEDMask) {}
static inline void LEDs_ChangeLEDs(const uint_reg_t LEDMask, const uint_reg_t ActiveMask) {}
static inline void LEDs_ToggleLEDs(const uint_reg_t LEDMask) {}
{ return 0 }
static inline uint_reg_t LEDs_GetLEDs(void) { return 0; }
#elif (BOARD == BOARD_USBKEY)
#include "AVR8/USBKEY/LEDs.h"
#elif (BOARD == BOARD_STK525)
Expand Down
6 changes: 3 additions & 3 deletions LUFA/Drivers/USB/Class/Device/AudioClassDevice.h
Expand Up @@ -317,7 +317,7 @@
* \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
* \param[in] Sample Signed 8-bit audio sample.
*/
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE;
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
static inline void Audio_Device_WriteSample8(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
const int8_t Sample)
{
Expand All @@ -335,7 +335,7 @@
* \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
* \param[in] Sample Signed 16-bit audio sample.
*/
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE;
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
static inline void Audio_Device_WriteSample16(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
const int16_t Sample)
{
Expand All @@ -353,7 +353,7 @@
* \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
* \param[in] Sample Signed 24-bit audio sample.
*/
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE;
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
static inline void Audio_Device_WriteSample24(USB_ClassInfo_Audio_Device_t* const AudioInterfaceInfo,
const int32_t Sample)
{
Expand Down
6 changes: 3 additions & 3 deletions LUFA/Drivers/USB/Class/Host/AudioClassHost.h
Expand Up @@ -310,7 +310,7 @@
* \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
* \param[in] Sample Signed 8-bit audio sample.
*/
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE;
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
static inline void Audio_Host_WriteSample8(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo,
const int8_t Sample)
{
Expand All @@ -335,7 +335,7 @@
* \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
* \param[in] Sample Signed 16-bit audio sample.
*/
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE;
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
static inline void Audio_Host_WriteSample16(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo,
const int16_t Sample)
{
Expand All @@ -360,7 +360,7 @@
* \param[in,out] AudioInterfaceInfo Pointer to a structure containing an Audio Class configuration and state.
* \param[in] Sample Signed 24-bit audio sample.
*/
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE;
ATTR_NON_NULL_PTR_ARG(1) ATTR_ALWAYS_INLINE
static inline void Audio_Host_WriteSample24(USB_ClassInfo_Audio_Host_t* const AudioInterfaceInfo,
const int32_t Sample)
{
Expand Down

0 comments on commit d2aaa0a

Please sign in to comment.